C Programming Find the output of the following program.void main(){ int i=065, j=65; printf("%d %d", i, j);} 053 65 Syntax error 65 65 53 65 065 65 053 65 Syntax error 65 65 53 65 065 65 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program code?#include void main(){ int i=3, *j, **k; j = &i; k = &j; printf("%d%d%d", *j, **k, *(*k));} 000 333 Garbage Value 433 444 000 333 Garbage Value 433 444 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. 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. Both can occur multiple times, but a definition must occur first. A definition occurs once, but a declaration may occur many times. 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. Both can occur multiple times, but a definition must occur first. ANSWER DOWNLOAD EXAMIANS APP
C Programming C preprocessor Takes care of include files Takes care of conditional compilation Takes care of macros All of these Acts before compilation Takes care of include files Takes care of conditional compilation Takes care of macros All of these Acts before compilation ANSWER DOWNLOAD EXAMIANS APP
C Programming short testarray[4][3] = { {1}, {2,3}, {4,5,6}};printf("%d", sizeof(testarray));Assuming a short is two bytes long, what will be printed by the above code? 6 12 It will not compile because not enough initializers are given 24 7 6 12 It will not compile because not enough initializers are given 24 7 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator has the lowest priority? + % ++ || && + % ++ || && ANSWER DOWNLOAD EXAMIANS APP