C Programming Which is the only function all C programs must contain? system() start() main() getch() printf() system() start() main() getch() printf() ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program. void main() { int i=01289; printf("%d", i); } Syntax error 0713 0289 713 1289 Syntax error 0713 0289 713 1289 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is the correct way of declaring a float pointer: None of these float ptr; float *ptr; *float ptr; None of these float ptr; float *ptr; *float ptr; ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output given program?#includevoid main(){int i = -10;for(;i;printf("%d ", i++));} Complier error -10 to infinite -10 to -1 -10 to 0 Complier error -10 to infinite -10 to -1 -10 to 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Identify the correct output of the following code:void main(){ int w=10, x=5, y=3, z=3; if( (w < x ) && (y=z++) ) printf("%d %d %d %d", w, x, y, z); else printf("%d %d %d %d", w, x, y, z);} 10 5 4 4 10 5 5 5 10 5 4 3 10 5 3 3 10 5 3 4 10 5 4 4 10 5 5 5 10 5 4 3 10 5 3 3 10 5 3 4 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the base data type of a pointer variable by which the memory would be allocated to it? unsigned int float No data type Depends upon the type of the variable to which it is pointing. int unsigned int float No data type Depends upon the type of the variable to which it is pointing. int ANSWER DOWNLOAD EXAMIANS APP