C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} Good M Morning Good Morning None of these Good M Morning Good Morning None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of given program?#includevoid main(){int a=3;for(;a;printf("%d ", a--);} infinity loop 3 2 1 0 3 2 1 no output infinity loop 3 2 1 0 3 2 1 no output ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as System programming language Data processing language None of these General purpose language System programming language Data processing language None of these General purpose language ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:#include#define clrscr() 100void main(){ clrscr(); printf("%dn", clrscr());} Error 0 100 1 Error 0 100 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... Block scope Function scope No scope at all Local scope File scope Block scope Function scope No scope at all Local scope File 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, II and III III and IV II and III I and II I, III and IV I, II and III III and IV II and III I and II I, III and IV ANSWER DOWNLOAD EXAMIANS APP