C Programming Find the output of the following program. void main() { int i=01289; printf("%d", i); } 0713 713 1289 0289 Syntax error 0713 713 1289 0289 Syntax error ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of following program code?#include int main(void){ char p; char buf[10] = {1, 2, 3, 4, 5, 6, 9, 8}; p = (buf + 1)[5]; printf("%d", p); return 0;} None of these Error 9 6 5 None of these Error 9 6 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming A preprocessor command need not start on the first column comes before the first executable statement has # as the first character need not start on a new line need not start on the first column comes before the first executable statement has # as the first character need not start on a new line ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be output if you will compile and execute the following c code?#include#define max 5void main(){ int i = 0; i = max++; printf("%d", i++);} 5 6 7 Compiler Error 0 5 6 7 Compiler Error 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p="hi friends", *p1; p1=p; while(*p!='\0') ++*p++; printf("%s", p1);} None of These hi friends hj grjeodt ij!gsjfoet None of These hi friends hj grjeodt ij!gsjfoet ANSWER DOWNLOAD EXAMIANS APP
C Programming Which is the only function all C programs must contain? system() main() getch() start() printf() system() main() getch() start() printf() ANSWER DOWNLOAD EXAMIANS APP