C Programming In which stage the following code#includegets replaced by the contents of the file stdio.h None of these During Editing During Preprocessing During Execution During linking None of these During Editing During Preprocessing During Execution During linking ANSWER DOWNLOAD EXAMIANS APP
C Programming The declarationint (*p) [5];means None of these. The same as int *p[ p is one dimensional array of size 5, of pointers to integers. p is a pointer to a 5 elements integer array. None of these. The same as int *p[ p is one dimensional array of size 5, of pointers to integers. p is a pointer to a 5 elements integer array. 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");} Forget it None of These Ok here Error Forget it None of These Ok here Error ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... Local scope File scope No scope at all Function scope Block scope Local scope File scope No scope at all Function scope Block scope ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program?#include#define prod(a,b) a*bvoid main(){ int x=3,y=4; printf("%d", prod(x+2,y-1));} None of these 10 12 11 15 None of these 10 12 11 15 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ int i=065, j=65; printf("%d %d", i, j);} 65 65 053 65 Syntax error 53 65 065 65 65 65 053 65 Syntax error 53 65 065 65 ANSWER DOWNLOAD EXAMIANS APP