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 pointer to pointer in c?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
Write a C program in Fibonacci series.
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
Tell me is null always defined as 0(zero)?
What is cohesion and coupling in c?
How pointers are declared?
Explain that why C is procedural?
What is volatile, register definition in C
What are the back slash character constants or escape sequence charactersavailable in c?
Why do we use pointer to pointer in c?
What is f'n in math?
What is function what are the types of function?
What is a pointer value and address in c?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays