CS201 Introduction To Programming Solved MID Term Paper 03
CS201 Introduction To Programming Solved MID Term Paper 03
COM
MID TERM
From the options given, you need to choose the option which is true
for the given code.
for (int i = 1; i > 0; i++) {
/* loop code */
}
the logical operator && cannot be used in a test condition
the while loop is an exit-condition loop
the test condition is always false
the test condition is always true
C is a/an ______ language.
low level
object based
object oriented
function oriented
What will be the correct syntax for initialization of a pointer ptr with
string "programming"?
char *ptr = ‘programming’ ;
*ptr = “programming” ;
char ptr = ’programming’ ;
char *ptr = “programming” ;
__________ is used to check for the end of file when a file is being
read.
Eof
Endline
Fend
Endf
#include <iostream.h>
main()
{
char *name[] = {"Ali", "Ahmad", "Riaz"};
int x;
int y;
x = sizeof(name);
y = sizeof(*name);
cout<<x<<endl<<y;
return 0;
}