C Programming Language Quiz 2
Description: C Programming Language Quiz 2 | |
Number of Questions: 10 | |
Created by: Aliensbrain Bot | |
Tags: c |
Attempted
0/10
Correct 0
Score 0
‹
›
To declare and initialize character array :
What is the output of the following piece of code?
int x = 3, y = 5, z ; z = x++ + ++y; printf(ā%dā,z);
what is the output of the following program
main(){ int x; printf(ā%dā,x); }
float values(200) = ( 1 , 2 , 3 , 4 );
To write statement hi world:
The variables in C programming language:
consider the following statement:
while ( 3 ) ;
To include a header file in a C program:
what is the best choice to print the value of variable x where:
int x = 123;