C Programming Determine output:void main(){ int i=10; i = !i>14; printf("i=%d", i); } None of these 10 0 14 1 None of these 10 0 14 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which one of the following is not a valid identifier? _examians 1examians exam_veda examians1 _examians 1examians exam_veda examians1 ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on Local variables Arithmetic expressions R-values Both of the above Members of a structure Local variables Arithmetic expressions R-values Both of the above Members of a structure ANSWER DOWNLOAD EXAMIANS APP
C Programming If integer needs two bytes of storage, then maximum value of an unsigned integer is 216 216 – 1 215 None of these 215 – 1 216 216 – 1 215 None of these 215 – 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=5, j=6, z; printf("%d", i+++j);} 12 None of These 11 13 12 None of These 11 13 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#includevoid main(){ char s[]={'a','b','c','n','c','\0'}; char *p, *str, *str1; p=&s[3]; str=p; str1=s; printf("%c", ++*p + ++*str1-32);} N None of These M P N None of These M P ANSWER DOWNLOAD EXAMIANS APP