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
What is s or c?
How can a process change an environment variable in its caller?
What is the difference between typedef struct and struct?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
How many levels deep can include files be nested?
Do variables need to be initialized?
Why structure is used in c?
What is a program?
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
What is NULL pointer?
What is the acronym for ansi?
What is the purpose of void pointer?
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
Difference between Function to pointer and pointer to function
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?