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 |
how can i get the string which is having two spaces at the end.suppose the string is "Hello World ".Now at the end i have two spaces.i need to print with that spaces .
Can you mix old-style and new-style function syntax?
What is bubble sort technique in c?
Program to find larger of the two numbers without using if-else,while,for,switch
Why & is used in c?
what is the difference between #include<stdio.h> and #include "stdio.h" ?
who is the father of c
How many keywords (reserve words) are in c?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
Can you assign a different address to an array tag?
can we print any string in c language without using semicolon(;)(terminator) in whole program.
Explain how do you declare an array that will hold more than 64kb of data?