C Programming Determine Output:#define square(x) x*xvoid main(){ int i; i = 64/square(4); printf("%d", i);} None of These 64 16 4 None of These 64 16 4 ANSWER DOWNLOAD EXAMIANS APP
C Programming In which stage the following code#includegets replaced by the contents of the file stdio.h During linking During Execution During Preprocessing None of these During Editing During linking During Execution During Preprocessing None of these During Editing ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... Local scope Function scope File scope No scope at all Block scope Local scope Function scope File scope No scope at all Block scope ANSWER DOWNLOAD EXAMIANS APP
C Programming Let x be an array. Which of the following operations are illegal?I. ++xII. x+1III. x++IV. x*2 I, III and IV I and II I, II and III III and IV II and III I, III and IV I and II I, II and III III and IV II and III ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed when this program is executed?int f(int x){ if(x <= 4) return x; return f(--x);}void main(){ printf("%d ", f(7)); } Runtime error 1 2 3 4 4 4 5 6 7 Syntax error Runtime error 1 2 3 4 4 4 5 6 7 Syntax error ANSWER DOWNLOAD EXAMIANS APP
C Programming Which one of the following is not a valid identifier? 1examians examians1 _examians exam_veda 1examians examians1 _examians exam_veda ANSWER DOWNLOAD EXAMIANS APP