What is the output of the below program and how it is?
void main()
{
static int var=5;
printf("%d",var--);
if(var)
main();
}
Answer Posted / sireesha
54321
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How do I round numbers?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
What is the purpose of sprintf() function?
What is structure of c program?
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
Why clrscr is used after variable declaration?
will u please send me the placement papers to my mail???????????????????
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
How can you avoid including a header more than once?
What is file in c preprocessor?
Is c call by value?
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
Can we change the value of constant variable in c?