void main()
{
static int i = 5;
if(--i)
{
main();
printf("%d
",i);
}
}
what would be output of the above program and justify your
answer?
}
Answer Posted / biren
we can't call a main function with in main.
| Is This Answer Correct ? | 7 Yes | 32 No |
Post New Answer View All Answers
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
What are the types of pointers?
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
application attempts to perform an operation?
Why is c called a mid-level programming language?
Why c is called procedure oriented language?
What does == mean in texting?
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
Do you have any idea how to compare array with pointer in c?
main() { printf("hello"); fork(); }
What is #line?
What do you know about the use of bit field?