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 is the difference between null pointer and the void pointer?
What is multidimensional arrays
program for following output using for loop? 1 2 3 4 5 2 3 4 5 3 4 5 4 5 5
What is the general form of a C program?
Explain the difference between the local variable and global variable in c?
What is the advantage of using #define to declare a constant?
0 Answers Agilent, ZS Associates,
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Are c and c++ the same?
main() { enum _tag{ left=10, right, front=100, back}; printf("%d, %d, %d, %d", left, right, front, back); }
What is the meaning of && in c?
What is the difference between c &c++?
which one of follwoing will read a character from keyboard and store in c a)c=getc() b)c=getchar() c)c=getchar(stdin) d)getc(&c) e)none