Can main () be called recursively?
No Answer is Posted For this Question
Be the First to Post Answer
Tell me what are bitwise shift operators?
What are the phases in s/w developed life cycle? wat is the diff b/w stack & queue...where do we use stack
Which header file is essential for using strcmp function?
write a program to display the numbers in the following 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4
What are the advantages and disadvantages of a heap?
What is fflush() function?
Can a function argument have default value?
AMMONG THE 4 STROAGE CLASSES IN C, WHICH ONE FASTEST?
How can you pass an array to a function by value?
when will be evaluated as true/ if(x==x==x) a) x=1; b) x=0; c) x=-1; d) none
how can you print&scan anything using just one character? :) HINT: printf,scanf similer
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?