C Programming Standard ANSI C recognizes ______ number of keywords? 30 32 36 40 24 30 32 36 40 24 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ char *msg = "hi"; printf(msg);} h hi followed by garbage value Error Garbage Value hi h hi followed by garbage value Error Garbage Value hi ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=0, j=0; if(i && j++) printf("%d..%d", i++, j); printf("%d..%d", i, j);} 1..0 0..0 1..1 0..1 1..0 0..0 1..1 0..1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define clrscr() 100void main(){ clrscr(); printf("%d", clrscr());} Error 100 1 Error 100 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:#include#define clrscr() 100void main(){ clrscr(); printf("%dn", clrscr());} 100 1 Error 0 100 1 Error 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... 0 ASCII value of the input read. The actual values read for each argument. The number of successful read input values. 1 0 ASCII value of the input read. The actual values read for each argument. The number of successful read input values. 1 ANSWER DOWNLOAD EXAMIANS APP