FInd the output of the following expression.
#include<stdio.h>
#include<conio.h>
void main()
{
int i;
for(i=1;i<5;i++)
printf(" %d ",i);
}
Reveal answer
Fill a bubble to check yourself
FInd the output of the following expression.
#include<stdio.h>
#include<conio.h>
void main()
{
int i;
for(i=1;i<5;i++)
printf(" %d ",i);
}