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 What will be the output of the following piece of code?for(i = 0; i<10; i++);printf("%d", i); Syntax error 0123456789 10 0 Infinite loop Syntax error 0123456789 10 0 Infinite loop ANSWER DOWNLOAD EXAMIANS APP
C Programming What number will z in the sample code given below?int z, x=5, y= -10, a=4, b=2;z = x++ - --y*b/a; 9 10 11 5 6 9 10 11 5 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#include#includevoid main(){ char str[] = "Exam\0Veda"; printf("%s", str);} Exam Veda None of these Veda Exam Exam\0Veda Exam Veda None of these Veda Exam Exam\0Veda ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program if the array begins at 65472 and each integer occupies 2 bytes?#includevoid main(){ int a[3][4] = {1, 2, 3, 4, 4, 3, 2, 1, 7, 8, 9, 0}; printf("%u, %u", a+1, &a+1);} 65480, 65488 None of these 65474, 65488 65480, 65496 65474, 65476 65480, 65488 None of these 65474, 65488 65480, 65496 65474, 65476 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the base data type of a pointer variable by which the memory would be allocated to it? No data type int unsigned int float Depends upon the type of the variable to which it is pointing. No data type int unsigned int float Depends upon the type of the variable to which it is pointing. ANSWER DOWNLOAD EXAMIANS APP