main()
{
static int ivar=5;
printf("%d",ivar--);
if(ivar)
main();
}
Answers were Sorted based on User's Feedback
write a fuction for accepting and replacing lowercase letter to'Z' with out using inline function.
What is exit() function?
how to TOGGLE Nth bit of variable in a MACRO
What is memmove?
how can i make a program with this kind of output.. Enter a number: 5 0 01 012 0123 01234 012345 01234 0123 012 01 0
what is the difference between #include<stdio.h> and #include"stdio.h" ?
any "C" function by default returns an a) int value b) float value c) char value d) a & b
what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason
Is it cc or c in a letter?
program for validity of triangle from 3 side
what is the difference between %d and %*d in c languaga?
Are enumerations really portable?