C Programming If integer needs two bytes of storage, then maximum value of an unsigned integer is 215 – 1 216 None of these 216 – 1 215 215 – 1 216 None of these 216 – 1 215 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which one of the following is not a valid identifier? examians1 _examians exam_veda 1examians examians1 _examians exam_veda 1examians ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output given program?#includevoid main(){int i = -10;for(;i;printf("%d ", i++));} -10 to infinite Complier error -10 to 0 -10 to -1 -10 to infinite Complier error -10 to 0 -10 to -1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 1 0 0 0 1 1 0 1 None of these 1 0 0 0 1 1 0 1 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i; printf("%d", scanf("%d", &i)); // value 10 is given as input here} 10 1 None of These Garbage Value 10 1 None of These Garbage Value ANSWER DOWNLOAD EXAMIANS APP
C Programming int a[5] = {1,2,3}What is the value of a[4]? 0 3 2 1 Garbage Value 0 3 2 1 Garbage Value ANSWER DOWNLOAD EXAMIANS APP