AMU 2025 — Computer PYQ
AMU | Computer | 2025What is the output for the program given below?
#include<stdio.h>
void main()
{
int i=5;
for (; i< 12; i++);
printf ("%d", i);
}

What is the output for the program given below?
#include<stdio.h>
void main()
{
int i=5;
for (; i< 12; i++);
printf ("%d", i);
}