C Programming What number will z in the sample code given below?int z, x=5, y= -10, a=4, b=2;z = x++ - --y*b/a; 6 11 10 5 9 6 11 10 5 9 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the correct output of the following program?#includevoid main(){ char str[] = "C EXAMINATION", rev[17]; int i = strlen(str), j=0; for( ; i>=0; rev[j++] = str[i--]) rev[j] = str[j] ; puts(rev);} NOITANIMAXE No output at all. Syntax error C NOITANIMAXE C NOITANIMAXE No output at all. Syntax error C NOITANIMAXE C 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++);} 6 Compiler Error 0 7 5 6 Compiler Error 0 7 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; p="Hello"; printf("%c", *&*p);} H Some Address will be printed None of These Hello H Some Address will be printed None of These Hello ANSWER DOWNLOAD EXAMIANS APP
C Programming Which is the only function all C programs must contain? getch() start() printf() system() main() getch() start() printf() system() main() ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is more appropriate for reading in a multi-word string? scanf() printf() puts() None of these gets() scanf() printf() puts() None of these gets() ANSWER DOWNLOAD EXAMIANS APP