C Programming C was primarily developed as General purpose language Data processing language System programming language None of these General purpose language Data processing language System programming language None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; p="Hello"; printf("%c", *&*p);} H Hello None of These Some Address will be printed H Hello None of These Some Address will be printed ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=1, j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; }} None of These GOOD BAD GOOD Compiler Error None of These GOOD BAD GOOD Compiler Error ANSWER DOWNLOAD EXAMIANS APP
C Programming The library function used to find the last occurrence of a character in a string is laststr() strstr() strrchr() strnstr() None of these laststr() strstr() strrchr() strnstr() None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int const *p=5; printf("%d", ++(*p));} 6 Garbage Value 5 Compiler Error 6 Garbage Value 5 Compiler Error ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){int a=11,b=5;if(a=5) b++;printf("%d %d", ++a, b++);} 11 6 6 6 6 7 5 6 12 7 11 6 6 6 6 7 5 6 12 7 ANSWER DOWNLOAD EXAMIANS APP