Computer Science, asked by daniyaputeri101, 7 months ago

How to write the program? Do we use char? How to input 'Hi' in while loop statement?

Attachments:

Answers

Answered by 217him217
0

Explanation:

#include<stdio.h>

void main()

{

int i;

i=0;

while(i!=5)

{

printf("HI");

}

}

Similar questions