What will be the output of the following ‘C’ program?
#include<stdio.h>
void main ()
{
int n = 1,times=4;
while( n <= times)
{
printf("C while loops: %d\n", n);
n++;
}
}
Answers
Answered by
0
Answer:
C while loops: 1
C while loops: 2
C while loops: 3
C while loops: 4
Similar questions
Chemistry,
1 month ago
Biology,
1 month ago
Social Sciences,
2 months ago
Science,
2 months ago
India Languages,
9 months ago