1. What will be the output of the following programs.
a) #include <stdio.h>
Main()
{
Int x=4;
While(x==1)
{
X=x-1;
Printf(ā%dā,x);
--x;
}
}
Answer Posted / mallesh
output is nothing bcz loop is not exists
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain what is the difference between #include and #include 'file' ?
What is the modulus operator?
What are # preprocessor operator in c?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
write a proram to reverse the string using switch case?
What is default value of global variable in c?
How to declare a variable?
What library is sizeof in c?
What is the difference between volatile and const volatile?
Does c have an equivalent to pascals with statement?
What is break statement?
What do the functions atoi(), itoa() and gcvt() do?
Write a program to implement queue.
Why doesn't C support function overloading?
Why is main function so important?