What is the output of below code?
main() { static int a=5; printf("%3d",a--); if(a) main(); }
Answer Posted / vikas
output is 5 4 3 2 1
| Is This Answer Correct ? | 11 Yes | 2 No |
Post New Answer View All Answers
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
What is the purpose of 'register' keyword in c language?
Give basis knowledge of web designing ...
Is python a c language?
What is a good way to implement complex numbers in c?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
hai iam working in sap sd module for one year and working in lumax ind ltd in desp department but my problem is i have done m.b.a in hr/marketing and working sap sd there is any combination it. can you give right solution of my problem. and what can i do?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
Explain how are 16- and 32-bit numbers stored?
I need testPalindrome and removeSpace
#include
Why static is used in c?
Where register variables are stored in c?
difference between native and cross compilers
Write a Program to find whether the given number or string is palindrome.
Give me the code of in-order recursive and non-recursive.