main()
{
static int ivar=5;
printf("%d",ivar--);
if(ivar)
main();
}
Answers were Sorted based on User's Feedback
What are volatile variables in c?
What is a global variable in c?
what is data structure.in linear and non linear data structures which one is better?Explain
why u join this call center?
What is character set?
What is a shell structure examples?
find a number whether it is even or odd without using any control structures and relational operators?
22 Answers Microsoft, Shashank Private Limited,
int main(){ float f=8.0; if(f==8.0) printf("good"); else printf("bad"); } what is the answere and explain it?
Software Interview Questions
Where we use clrscr in c?
Can one function call another?
x=y=z=1 z=++x||++y&&++z Printf("%%%d";xyz) what is the values of x,y and z?????