What is the output for the program given below?#include <stdio.h>void main(){ int i = 5; for (; i < 12; i++); printf("%d", i);}
#include <stdio.h>
void main()
{
int i = 5;
for (; i < 12; i++);
printf("%d", i);
}
Previous 10 Questions — AMU MCA 2025
Nearest first
1
2
3
4
5
6
7
8
9
10
In the following program, how many times ‘for’ loop will be executed?#include <stdio.h>void main(){ …
Topic: AMU MCA 2025
Which sequence represents a max heap?
Topic: AMU MCA 2025
Correct arrangement of memory types in decreasing order of access time:
Topic: AMU MCA 2025
Stacks cannot be used to:
Topic: AMU MCA 2025
In a University schema, student and courses contains:
Topic: AMU MCA 2025
The employee salary should not be greater than Rs. 20,000.” This constraint is of type:
Topic: AMU MCA 2025
In a two pass assembler, the object code generation is done during the:
Topic: AMU MCA 2025
Normally a high level language is:
Topic: AMU MCA 2025
Normally a high level language is:
Topic: AMU MCA 2025
What is the similarity between a structure, union and enumeration?
Topic: AMU MCA 2025
Next 10 Questions — AMU MCA 2025
Ascending by ID
1
2
3
4
5
6
7
8
9
10
The number X is given in IEEE 32-bit floating point format. What is the equivalent decimal value?
$X = 1\ 10000011\ 11…
Topic: AMU MCA 2025
Which one of the following statements is true regarding Compiler and Interpreter?
Topic: AMU MCA 2025
Which one of the following statements is not true regarding Doubly Linked List?
Topic: AMU MCA 2025
What is a critical section?
Topic: AMU MCA 2025
Depth First Search is a technique for:
Topic: AMU MCA 2025
Suppose that in a C program snippet, following statements are used:i) sizeof(int)ii) sizeof(int*)iii) sizeof(int**)Assu…
Topic: AMU MCA 2025
Adjacency Matrix is used for:
Topic: AMU MCA 2025
The Default and Maximum Size of Text Field in MS-Access is:
Topic: AMU MCA 2025
Sparse matrices have:
Topic: AMU MCA 2025
Every process consists of two steps CPU and I/O bursts. An I/O bound program will lead to:
Topic: AMU MCA 2025