C Programming Choose the correct output for the following program.#includevoid main(){ int a=10, b=11, c=13, d; d = (a=c, b+=a, c=a+b+c); printf("%d %d %d %d", d, a, b, c);} 50, 13, 24, 13 50, 13, 24, 50 13, 13, 24, 13 13, 10, 24, 50 50, 13, 11, 13 50, 13, 24, 13 50, 13, 24, 50 13, 13, 24, 13 13, 10, 24, 50 50, 13, 11, 13 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#includevoid main(){ register i=5; char j[]= "hello"; printf("%s %d", j, i);} hello garbage value None of These hello 5 Error hello garbage value None of These hello 5 Error ANSWER DOWNLOAD EXAMIANS APP
C Programming String concatenation means - Partitioning the string into two strings. Combining two strings. Comparing the two strings to define the larger one. Extracting a substring out of a string. Merging two strings. Partitioning the string into two strings. Combining two strings. Comparing the two strings to define the larger one. Extracting a substring out of a string. Merging two strings. ANSWER DOWNLOAD EXAMIANS APP
C Programming Consider the following type definition.typedef char x[10];x myArray[5];What will sizeof(myArray) be ? (Assume one character occupies 1 byte) 10 15 None of these 30 50 10 15 None of these 30 50 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator from the following has the lowest priority? Conditional operator Comma operator Assignment operator Division operator Unary-operator Conditional operator Comma operator Assignment operator Division operator Unary-operator ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){ int value=0; if(value) printf("well done "); printf("examveda");} examians None of these complier error well done examians examians None of these complier error well done examians ANSWER DOWNLOAD EXAMIANS APP