C Programming Determine Output:void main(){ int i=5, j=6, z; printf("%d", i+++j);} 12 13 None of These 11 12 13 None of These 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){ int value=0; if(value) printf("well done "); printf("examveda");} well done examians examians complier error None of these well done examians examians complier error None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming If integer needs two bytes of storage, then maximum value of an unsigned integer is 215 216 – 1 216 None of these 215 – 1 215 216 – 1 216 None of these 215 – 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming The library function used to find the last occurrence of a character in a string is strrchr() strnstr() None of these laststr() strstr() strrchr() strnstr() None of these laststr() strstr() ANSWER DOWNLOAD EXAMIANS APP
C Programming Let x be an array. Which of the following operations are illegal?I. ++xII. x+1III. x++IV. x*2 II and III I, III and IV III and IV I, II and III I and II II and III I, III and IV III and IV I, II and III I and II ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includevoid main(){ float arr[] = {12.4, 2.3, 4.5, 6.7}; printf("%d", sizeof(arr)/sizeof(arr[0]));} 4 5 None of these 7 6 4 5 None of these 7 6 ANSWER DOWNLOAD EXAMIANS APP