C Programming Determine Output:void main(){ int i=i++, j=j++, k=k++; printf("%d %d %d", i, j, k);} garbage values 0 0 0 Error 1 1 1 garbage values 0 0 0 Error 1 1 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming String concatenation means - Merging two strings. Extracting a substring out of a string. Partitioning the string into two strings. Combining two strings. Comparing the two strings to define the larger one. Merging two strings. Extracting a substring out of a string. Partitioning the string into two strings. Combining two strings. Comparing the two strings to define the larger one. ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.#define INC(X) X++void main(){ int x=4; printf("%d", INC(x++));} 6 5 Error 4 6 5 Error 4 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ printf("%d, %d", sizeof(int *), sizeof(int **));} 4, 4 0, 2 2, 2 2, 0 2, 4 4, 4 0, 2 2, 2 2, 0 2, 4 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output of the following program code.#includevoid main(){ int a, b=7; a = b<4 ? b<<1 : ++b>4 ? 7>>1 : a; printf("%d %d", a, b);} 3 7 3 8 7 3 8 3 None of these 3 7 3 8 7 3 8 3 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){int a=11,b=5;if(a=5) b++;printf("%d %d", ++a, b++);} 6 6 5 6 12 7 6 7 11 6 6 6 5 6 12 7 6 7 11 6 ANSWER DOWNLOAD EXAMIANS APP