C Programming Functions have .......... No scope at all Function scope Local scope File scope Block scope No scope at all Function scope Local scope File scope Block scope ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of following is not a valid name for a C variable? Exam_veda None of these Examians Exam veda Both A and B Exam_veda None of these Examians Exam veda Both A and B ANSWER DOWNLOAD EXAMIANS APP
C Programming Choose the correct output for the following program.#includevoid main(){ int a=10, b=11, c=13, d; d = (a=c, b+=a, c=a+b+c); printf("%d %d %d %d", d, a, b, c);} 50, 13, 24, 13 13, 13, 24, 13 50, 13, 24, 50 13, 10, 24, 50 50, 13, 11, 13 50, 13, 24, 13 13, 13, 24, 13 50, 13, 24, 50 13, 10, 24, 50 50, 13, 11, 13 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i; char a[]="�"; if(printf("%sn", a)) printf("Ok here n"); else printf("Forget itn");} Error Ok here None of These Forget it Error Ok here None of These Forget it ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be output if you will compile and execute the following c code?#include#define max 5void main(){ int i = 0; i = max++; printf("%d", i++);} 0 6 7 Compiler Error 5 0 6 7 Compiler Error 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the final value of the digit?void main(){ int digit = 0; for( ; digit <= 9; ) digit++; digit *= 2; --digit;} 19 16 17 -1 20 19 16 17 -1 20 ANSWER DOWNLOAD EXAMIANS APP