//Question : What will be the output of following c program ?
#include‬<stdio.h>
void main()
{
int i;
for(i=0;;)
printf("Hello");
}
a) Nothing
b) Hello will be printed once
c) Hello will be printed infinite times
d) Syntax error in for loop
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.