Description: C Programming Language Quiz - 1 | |
Number of Questions: 10 | |
Created by: Aliensbrain Bot | |
Tags: c |
if ( 16 = m ) printf("m is 16");
To copy a string into another, given:
char s1[30] = "xyz", s2[20];
If LSB of a binary number is "0" then it is:
consider the following statement:
while ( 1 ) ;
What is the output of the following piece of code?
int x = 3, y = 5, z;
z = x + ++y;
printf(“%d”,z);
The highest digit in any number system equals:
The main() function is:
To get a statement from the user input in the array char s[100]:
what is the output of the following program
int change( int x ) {
x = 7;
}
main(){
int x = 5;
change(x);
printf(“%d”,x);
}
What is the output of the following piece of code:
int x = 7;
if ( x = 3 ) printf( “%d“ , x);