C Programming If integer needs two bytes of storage, then maximum value of an unsigned integer is 216 215 – 1 215 216 – 1 None of these 216 215 – 1 215 216 – 1 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; p="Hello"; printf("%c", *&*p);} None of These H Some Address will be printed Hello None of These H Some Address will be printed Hello 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 12 7 5 6 6 6 6 7 11 6 12 7 5 6 6 6 6 7 ANSWER DOWNLOAD EXAMIANS APP
C Programming The library function used to find the last occurrence of a character in a string is strnstr() strrchr() strstr() None of these laststr() strnstr() strrchr() strstr() None of these laststr() ANSWER DOWNLOAD EXAMIANS APP
C Programming Which one of the following is not a reserved keyword for C? auto register main case default auto register main case default ANSWER DOWNLOAD EXAMIANS APP
C Programming If the two strings are identical, then strcmp() function returns 1 0 None of these true -1 1 0 None of these true -1 ANSWER DOWNLOAD EXAMIANS APP