C Programming Functions have .......... File scope No scope at all Block scope Local scope Function scope File scope No scope at all Block scope Local scope Function scope ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 0 0 1 0 1 1 0 1 None of these 0 0 1 0 1 1 0 1 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming If integer needs two bytes of storage, then maximum value of an unsigned integer is 215 216 – 1 215 – 1 None of these 216 215 216 – 1 215 – 1 None of these 216 ANSWER DOWNLOAD EXAMIANS APP
C Programming What number would be shown on the screen after the following statements of C are executed?char ch; int i; ch = 'G'; i = ch-'A';printf("%d", i); 8 9 6 5 7 8 9 6 5 7 ANSWER DOWNLOAD EXAMIANS APP
C Programming C programs are converted into machine language with the help of An operating system A compiler An Editor None of these. An operating system A compiler An Editor None of these. ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code fragment?void main(){ printf("%x",-1<<4);} fff4 fff1 fff0 fff3 fff2 fff4 fff1 fff0 fff3 fff2 ANSWER DOWNLOAD EXAMIANS APP