Syvum Home Page

Home > Quiz Games > C++ Programming >

C++ Programming : Know Your Programs


What do each of the following programs do?
Formats Quiz Review
Multiple choice

Consider the following program code :
 #include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int x=10;
float y=10.1;
char z='a';
cout << "x = " << x << endl;
cout << "y = " << y << endl;
cout << "z = " << z << endl;
getch();
}
This program takes in an integer, floating point number and a character as a screen input from the user.

  True

  False

Question 1.


Contact Info © 1999-2024 Syvum Technologies Inc. Privacy Policy Disclaimer and Copyright