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;
}
}
Post New Answer View All Answers
What is the difference between int main and void main?
How to Throw some light on the splay trees?
What are multidimensional arrays?
How is = symbol different from == symbol in c programming?
What are the two types of functions in c?
Explain what is the advantage of a random access file?
Write a program to check prime number in c programming?
Why we use stdio h in c?
How do you define a string?
What is wrong with this initialization?
Write a program to identify if a given binary tree is balanced or not.
Is array a primitive data type in c?
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
Can you write the function prototype, definition and mention the other requirements.
The statement, int(*x[]) () what does in indicate?