C Programming If integer needs two bytes of storage, then maximum value of an unsigned integer is 216 – 1 216 None of these 215 215 – 1 216 – 1 216 None of these 215 215 – 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:#include#define clrscr() 100void main(){ clrscr(); printf("%dn", clrscr());} Error 0 1 100 Error 0 1 100 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which one of the following is not a valid identifier? exam_veda _examians 1examians examians1 exam_veda _examians 1examians examians1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? Gosling Bjarne Stroustrup James Dr. F. Codd Dennis Ritchie Gosling Bjarne Stroustrup James Dr. F. Codd Dennis Ritchie ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ printf("%d, %d", sizeof(int *), sizeof(int **));} 2, 0 2, 2 2, 4 4, 4 0, 2 2, 0 2, 2 2, 4 4, 4 0, 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?for(i=10; i++; i<15) printf("%d ", i); 10 11 12 13 14 10 11 12 13 14 15 Infinite loop None of these 9 10 11 12 13 10 11 12 13 14 10 11 12 13 14 15 Infinite loop None of these 9 10 11 12 13 ANSWER DOWNLOAD EXAMIANS APP