void main()
{
for(; 0 ;)
... {
printf("hello");
... }
getch();
}
Answer / shaik. jani bahsa
result is nothing, because 0 means false, 1 means true
once cond false pointr comes out of the loop.
| Is This Answer Correct ? | 10 Yes | 0 No |
What are reserved words with a programming language?
In which area global, external variables are stored?
Hi can anyone tell what is a start up code?
write a program to search for an element in a given array. If the array was found then display its position otherwise display appropriate message in c language
how to find sum of 5 digits in C?
What is difference between structure and union in c programming?
What will be the output of the following program #include<stdio.h> void main() { int i=20; i-=i+++++i++; printf("%d",i); }
What are the disadvantages of a shell structure?
Write a C program to print 1 2 3 ... 100 without using loops?
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
How do we make a global variable accessible across files? Explain the extern keyword?
What are the ways to a null pointer can use in c programming language?