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 5 9 10 6 11 5 9 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output?main() { char *p; p = "Hello"; printf("%cn",*&*p); } Some address will be printed None of these. Hello H Some address will be printed None of these. Hello H ANSWER DOWNLOAD EXAMIANS APP
C Programming void main(){ int a=10, b; b = a++ + ++a; printf("%d %d %d %d", b, a++, a, ++a);}what will be the output when following code is executed? 22 11 11 11 22 12 12 13 22 14 12 13 12 10 11 13 22 13 14 14 22 11 11 11 22 12 12 13 22 14 12 13 12 10 11 13 22 13 14 14 ANSWER DOWNLOAD EXAMIANS APP
C Programming The default parameter passing mechanism is call by value None of these. call by reference call by value result call by value None of these. call by reference call by value result ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following correctly accesses the seventh element stored in arr, an array with 100 elements? arr{7} arr{6} arr[7] None of these arr[6] arr{7} arr{6} arr[7] None of these arr[6] ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ struct xx { int x=3; char name[] = "hello"; }; struct xx *s = malloc(sizeof(struct xx)); printf("%d", s->x); printf("%s", s->name); } None of these 3 hello Linking error Compiler Error None of these 3 hello Linking error Compiler Error ANSWER DOWNLOAD EXAMIANS APP