C Programming Determine output:void main(){ int i=10; i = !i>14; printf("i=%d", i); } 0 10 None of these 14 1 0 10 None of these 14 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the difference between a declaration and a definition of a variable? There is no difference between them. Both can occur multiple times, but a declaration must occur first. A definition occurs once, but a declaration may occur many times. A declaration occurs once, but a definition 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 definition occurs once, but a declaration may occur many times. A declaration occurs once, but a definition may occur many times. Both can occur multiple times, but a definition must occur first. ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program. void main() { int i=01289; printf("%d", i); } 713 Syntax error 0713 1289 0289 713 Syntax error 0713 1289 0289 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which is the only function all C programs must contain? getch() main() start() system() printf() getch() main() start() system() printf() ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator from the following has the lowest priority? Conditional operator Division operator Comma operator Assignment operator Unary-operator Conditional operator Division operator Comma operator Assignment operator Unary-operator ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code?void main(){ int a[10]; printf("%d %d", a[-1], a[12]);} Code will not compile 0 Garbage Value Garbage value 0 Garbage vlaue Garbage Value 0 0 Code will not compile 0 Garbage Value Garbage value 0 Garbage vlaue Garbage Value 0 0 ANSWER DOWNLOAD EXAMIANS APP