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) 30 None of these 50 15 10 30 None of these 50 15 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int const *p=5; printf("%d", ++(*p));} Compiler Error 5 6 Garbage Value Compiler Error 5 6 Garbage Value ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program. void main() { int i=01289; printf("%d", i); } 713 Syntax error 0289 1289 0713 713 Syntax error 0289 1289 0713 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program code?#include void main(){ int i=3, *j, **k; j = &i; k = &j; printf("%d%d%d", *j, **k, *(*k));} 000 Garbage Value 333 433 444 000 Garbage Value 333 433 444 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is not a correct variable type? char real int float double char real int float double ANSWER DOWNLOAD EXAMIANS APP
C Programming If integer needs two bytes of storage, then maximum value of an unsigned integer is 215 – 1 None of these 216 215 216 – 1 215 – 1 None of these 216 215 216 – 1 ANSWER DOWNLOAD EXAMIANS APP