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 |
int main() { int days; printf("enter days you are late"); scanf("%d",days); if (days<=5) printf("5o paisa fine"); if (days<=10&&days>=6) printf("1rs fine"); if(days>10) printf("10 rs fine"); if(days=30) printf("membership cancelled"); return 0; } tell me whats wrong in this program? is it right?
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
What is the function of volatile in c language?
can you explain in brief what is "r+" mode in a file... i know that it si used to read and modify rhe existing content.... but explalanation about the file pointer in "r+" mode i wann to know???????????
How to add two numbers with using function?
Is it better to use a macro or a function?
Why C language is a procedural language?
Can 'this' pointer by used in the constructor?
what is diference between return 0 and return NULL??
How reliable are floating-point comparisons?
What are the different types of control structures?
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We Are Student “ Output: "We Are Student"