Answer Posted / shani jaiswal
main()
{
static int i=0;
printf("%d",i);
i++;
main();
return 0;
}
| Is This Answer Correct ? | 10 Yes | 0 No |
Post New Answer View All Answers
What is the use of typedef in c?
What is string length in c?
FILE PROGRAMMING
Explain how do you determine whether to use a stream function or a low-level function?
What are formal parameters?
Why can’t constant values be used to define an array’s initial size?
Explain what is the benefit of using an enum rather than a #define constant?
c program to compute AREA under integral
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
Explain the difference between ++u and u++?
What is meant by initialization and how we initialize a variable?
What is local and global variable in c?
Can you please explain the difference between exit() and _exit() function?
Explain a pre-processor and its advantages.