What will be the output of the following piece of code?
#include <stdio.h>
int main()
{
int i;
for(i=0;i< 8; i++);
printf("%d",i);
return 0;
}Qus
कोड के निम्नलिखित भाग का आउटपुट क्या होगा?
#include <stdio.h> int main() { int i; for(i=0;i< 8; i++); printf("%d",i); return 0; }
A. 0
B. 1234567
C. 8
D. Infinite loop