what is the diff b/w static and non static variables in C.
Give some examples plz.
Answer Posted / parth ujenia
main()
{
int i=5;
while(i!=0)
{
printf("%d",i--);
main();
}
getch();
}
output: 54321
| Is This Answer Correct ? | 7 Yes | 1 No |
Post New Answer View All Answers
Differentiate between #include<...> and #include '...'
i got 75% in all semester am i eligible for your company
What is the difference between procedural and functional programming?
How do I use strcmp?
What is the heap in c?
how to introdu5ce my self in serco
What does != Mean in c?
Is c++ based on c?
Explain what is the difference between null and nul?
How can a string be converted to a number?
What is a pragma?
What are compound statements?
Explain what is wrong with this statement? Myname = ?robin?;
Why is c fast?
What does the function toupper() do?