Computer Science, asked by singhshivam15357, 2 months ago

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 manmandawar
0

Answer:

C while loops: 1

C while loops: 2

C while loops: 3

C while loops: 4

Similar questions