C Programming In which stage the following code#includegets replaced by the contents of the file stdio.h During linking During Execution None of these During Preprocessing During Editing During linking During Execution None of these During Preprocessing During Editing ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... File scope Function scope Block scope No scope at all Local scope File scope Function scope Block scope No scope at all Local scope ANSWER DOWNLOAD EXAMIANS APP
C Programming If integer needs two bytes of storage, then maximum value of an unsigned integer is 216 215 216 – 1 215 – 1 None of these 216 215 216 – 1 215 – 1 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following program?#includeint c[10] = {1,2,3,4,5,6,7,8,9,10}; main(){ int a, b=0; for(a=0;a<10;++a) if(c[a]%2 == 1) b+=c[a]; printf("%d", b);} None of these 24 30 25 20 None of these 24 30 25 20 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char p[]="%dn"; p[1] = 'c'; printf(p, 65);} c Error 65 A c Error 65 A ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as None of these General purpose language Data processing language System programming language None of these General purpose language Data processing language System programming language ANSWER DOWNLOAD EXAMIANS APP