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 / mani
it has some error............
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
Why isn't any of this standardized in c? Any real program has to do some of these things.
What are the features of c languages?
What are the preprocessor categories?
What is a wrapper function in c?
Explain the array representation of a binary tree in C.
What is the meaning of typedef struct in c?
Tell us bitwise shift operators?
What does c in a circle mean?
What is function definition in c?
What is character set?
What is c programming structure?
Why cant I open a file by its explicit path?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
What is the time and space complexities of merge sort and when is it preferred over quick sort?
What are the types of pointers?