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
English,
1 month ago
English,
1 month ago
Social Sciences,
3 months ago
Science,
3 months ago
Math,
10 months ago
India Languages,
10 months ago