C Programming Determine Output:void main(){ int i=5, j=6, z; printf("%d", i+++j);} None of These 11 12 13 None of These 11 12 13 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ printf("%d, %d", sizeof(int *), sizeof(int **));} 4, 4 2, 0 2, 4 0, 2 2, 2 4, 4 2, 0 2, 4 0, 2 2, 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ int i=10; /* assume address of i is 0x1234ABCD */ int *ip=&i; int **ipp=&&i; printf("%x,%x,%x", &i, ip, *ipp); } Runtime error 0x1234ABCD, 0x1234ABCD, 0x1234ABCD 0x1234ABCD, 0x1234ABCD, 10 Syntax error 0x1234ABCD, 10, 10 Runtime error 0x1234ABCD, 0x1234ABCD, 0x1234ABCD 0x1234ABCD, 0x1234ABCD, 10 Syntax error 0x1234ABCD, 10, 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming Any C program Needs input data. None of these Need not contain any function. Must contain at least one function. Needs input data. None of these Need not contain any function. Must contain at least one function. ANSWER DOWNLOAD EXAMIANS APP
C Programming In which stage the following code#includegets replaced by the contents of the file stdio.h During Execution None of these During Editing During Preprocessing During linking During Execution None of these During Editing During Preprocessing During linking ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char not; not = !2; printf("%d", not);} Garbage Value None of These 2 0 Garbage Value None of These 2 0 ANSWER DOWNLOAD EXAMIANS APP