C Programming Determine Output:void main(){ char *p; printf("%d %d", sizeof(*p), sizeof(p));} 1 2 2 2 2 1 1 1 1 2 2 2 2 1 1 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program. void main() { int i=01289; printf("%d", i); } 713 Syntax error 1289 0713 0289 713 Syntax error 1289 0713 0289 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p="hi friends", *p1; p1=p; while(*p!='\0') ++*p++; printf("%s", p1);} None of These ij!gsjfoet hj grjeodt hi friends None of These ij!gsjfoet hj grjeodt hi friends ANSWER DOWNLOAD EXAMIANS APP
C Programming The library function used to find the last occurrence of a character in a string is strrchr() None of these strnstr() laststr() strstr() strrchr() None of these strnstr() laststr() strstr() ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as Data processing language None of these System programming language General purpose language Data processing language None of these System programming language General purpose language ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on R-values Arithmetic expressions Local variables Both of the above Members of a structure R-values Arithmetic expressions Local variables Both of the above Members of a structure ANSWER DOWNLOAD EXAMIANS APP