C Programming If integer needs two bytes of storage, then maximum value of an unsigned integer is 216 None of these 216 – 1 215 215 – 1 216 None of these 216 – 1 215 215 – 1 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 None of these complier error examians well done examians None of these complier error examians ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program code?#include void main(){ int i=3, *j, **k; j = &i; k = &j; printf("%d%d%d", *j, **k, *(*k));} 444 433 Garbage Value 000 333 444 433 Garbage Value 000 333 ANSWER DOWNLOAD EXAMIANS APP
C Programming void main(){ int a=10, b; b = a++ + ++a; printf("%d %d %d %d", b, a++, a, ++a);}what will be the output when following code is executed? 22 13 14 14 22 12 12 13 12 10 11 13 22 14 12 13 22 11 11 11 22 13 14 14 22 12 12 13 12 10 11 13 22 14 12 13 22 11 11 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming In C programming language, which of the following type of operators have the highest precedence Arithmetic operators Logical operators Equality operators Relational operators Arithmetic operators Logical operators Equality operators Relational operators ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is correct way to define the function fun() in the below program?#includevoid main(){ int a[3][4]; fun(a);} void fun(int *p[3][4]){} void fun(int p[][4]){} void fun(int *p[][4]){} void fun(int *p[4]){} None of these void fun(int *p[3][4]){} void fun(int p[][4]){} void fun(int *p[][4]){} void fun(int *p[4]){} None of these ANSWER DOWNLOAD EXAMIANS APP