What is the output of the below program and how it is?
void main()
{
static int var=5;
printf("%d",var--);
if(var)
main();
}
Answer Posted / ferose
write a cprogram in 0 to 50 interger value divisble by 8
| Is This Answer Correct ? | 4 Yes | 5 No |
Post New Answer View All Answers
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
Is there a way to compare two structure variables?
What is operator promotion?
Why is c called a mid-level programming language?
What is a rvalue?
How does #define work?
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
What is the difference between near, far and huge pointers?
Explain can you assign a different address to an array tag?
What are the disadvantages of external storage class?
What are the disadvantages of a shell structure?
What is class and object in c?