You are on page 1of 1

/*Crihan Liviu Cristian, 2011,Lab04_P06*/

#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<conio.h>
#include<iostream>

using namespace std;

void main()
{
int a = 6;
double b = 3.14;
char c[30] = "Crihan Liviu Cristian";

cout << "The integer number is: " << a << "\nThe real number is: " << b <<
"\nThe array is: " << c;
_getch();
}//main

You might also like