C Programming What will be printed after compiling and running the following code?main() { char *p; printf("%d %d",sizeof(*p), sizeof(p));} 1 1 1 2 2 2 2 1 1 1 1 2 2 2 2 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming int a[5] = {1,2,3}What is the value of a[4]? 1 Garbage Value 0 3 2 1 Garbage Value 0 3 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is not a correct variable type? real float char double int real float char double int ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int const *p=5; printf("%d", ++(*p));} 6 Garbage Value Compiler Error 5 6 Garbage Value Compiler Error 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming The type of the controlling expression of a switch statement cannot be of the type ........ int char float long short int char float long short 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) 30 15 10 50 None of these 30 15 10 50 None of these ANSWER DOWNLOAD EXAMIANS APP