C Programming Determine Output:void main(){ char *p; printf("%d %d", sizeof(*p), sizeof(p));} 1 1 2 2 1 2 2 1 1 1 2 2 1 2 2 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program?#include#define square(x) x*x void main(){ int i; i = 64/square(4); printf("%d", i); } 64 None of These 4 16 64 None of These 4 16 ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? Dr. Dennis Ritchie F. Codd Gosling Bjarne Stroustrup James Dr. Dennis Ritchie F. Codd Gosling Bjarne Stroustrup James ANSWER DOWNLOAD EXAMIANS APP
C Programming An array elements are always stored in ________ memory locations. Random Sequential None of these Sequential and Random Random Sequential None of these Sequential and Random ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char string[]="Hello World"; display(string);}void display(char *string){ printf("%s", string);} Can't Say Compiler Error None of These will print Hello World Can't Say Compiler Error None of These will print Hello World ANSWER DOWNLOAD EXAMIANS APP
C Programming The statement int **a; is syntactically and semantically correct None of these. is legal but meaningless is illegal is syntactically and semantically correct None of these. is legal but meaningless is illegal ANSWER DOWNLOAD EXAMIANS APP