C Programming Determine Output:#include#define a 10void main(){ #define a 50 printf("%d", a);} Compiler Error 10 50 None of These Compiler Error 10 50 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... No scope at all Block scope Function scope Local scope File scope No scope at all Block scope Function scope Local scope File scope ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program?#include#define int char void main(){ int i = 65; printf("sizeof(i)=%d", sizeof(i));} sizeof(i)=2 Compiler Error None of These sizeof(i)=1 sizeof(i)=2 Compiler Error None of These sizeof(i)=1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the difference between a declaration and a definition of a variable? A definition occurs once, but a declaration may occur many times. Both can occur multiple times, but a definition must occur first. There is no difference between them. Both can occur multiple times, but a declaration must occur first. A declaration occurs once, but a definition may occur many times. A definition occurs once, but a declaration may occur many times. Both can occur multiple times, but a definition must occur first. There is no difference between them. Both can occur multiple times, but a declaration must occur first. A declaration occurs once, but a definition may occur many times. ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} Morning None of these Good Good Morning M Morning None of these Good Good Morning M ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code fragment?void main(){ printf("%x",-1<<4);} fff4 fff2 fff1 fff0 fff3 fff4 fff2 fff1 fff0 fff3 ANSWER DOWNLOAD EXAMIANS APP