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
Who invented bcpl language?
What are the properties of union in c?
How do you determine a file’s attributes?
What does %d do in c?
Difference between strcpy() and memcpy() function?
Write a code to determine the total number of stops an elevator would take to serve N number of people.
Which is better pointer or array?
Are enumerations really portable?
How can I determine whether a machines byte order is big-endian or little-endian?
What are keywords in c with examples?
What is type qualifiers?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
plz let me know how to become a telecom protocol tester. thank you.
Explain threaded binary trees?
What is the use of #define preprocessor in c?