What will be the output of the program if the array begins at 65472 and each integer occupies 2 bytes?#includevoid main(){ int a[3][4] = {1, 2, 3, 4, 4, 3, 2, 1, 7, 8, 9, 0}; printf("%u, %u", a+1, &a+1);} 65480, 65488 65474, 65476 65480, 65496 None of these 65474, 65488 TRUE ANSWER : ? YOUR ANSWER : ?
The operator > and < are meaningful when used with pointers, if None of these. The pointers point to structure of similar data type. The pointers point to elements of the same array. The pointers point to data of similar type. TRUE ANSWER : ? YOUR ANSWER : ?
What will be printed after execution of the following program code?main(){ printf("\\nab"); printf("\\bsi"); printf("\\rha"); } None of these absiha asiha hai haasi TRUE ANSWER : ? YOUR ANSWER : ?
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 Garbage value 0 Garbage vlaue Garbage Value 0 Garbage Value 0 0 TRUE ANSWER : ? YOUR ANSWER : ?
When a function is recursively called all the automatic variables are stored in a .......... Stack Register Queue Array Linked list TRUE ANSWER : ? YOUR ANSWER : ?
What will be the output of the following code?#includevoid main(){ int s=0; while(s++<10) { if(s<4 && s<9) continue; printf("%dt", s); }} 4 5 6 7 8 9 10 1 2 3 4 5 6 7 8 9 None of these 4 5 6 7 8 9 1 2 3 10 TRUE ANSWER : ? YOUR ANSWER : ?
What will be the output of the given program?#includevoid main(){float num=5.6;switch(num){case 5:printf("5");case 6:printf("6");default : printf("0");break;}printf("%d", num);} 0 5.600000 5 5.600000 6 5.600000 Complier error TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following function is more appropriate for reading in a multi-word string? gets() scanf() None of these printf() puts() TRUE ANSWER : ? YOUR ANSWER : ?
Determine Output:void main(){ char p[]="%dn"; p[1] = 'c'; printf(p, 65);} A Error 65 c TRUE ANSWER : ? YOUR ANSWER : ?
Determine Output:void main(){ char s[]="man"; int i; for(i=0; s[i]; i++) printf("%c%c%c%c ", s[i], *(s+i), *(i+s), i[s]);} None of These mmmm nnnn aaaa Compiler Error mmm nnn aaa TRUE ANSWER : ? YOUR ANSWER : ?