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
How many levels of pointers have?
Should I learn c before c++?
Is c still relevant?
How to throw some light on the b tree?
Difference between macros and inline functions? Can a function be forced as inline?
How pointers are declared?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
Why is c not oop?
Explain what will the preprocessor do for a program?
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
Explain the difference between structs and unions in c?
Calculate 1*2*3*____*n using recursive function??
Write a program in c to replace any vowel in a string with z?
Can we declare variable anywhere in c?
What is modifier & how many types of modifiers available in c?