void main(int n)
{
if(n==0)
return;
main(--n);
printf("%d ",n);
getch();
}
how it work and what will be its output...............it any
one know ans plz reply
No Answer is Posted For this Question
Be the First to Post Answer
write a function which accept two numbers from main() and interchange them using pointers?
What is difference between arrays and pointers?
Q-1: Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college.
pgm to reverse string using arrays i.e god is love becomes love is god) (assumption:only space is used for seperation of words) no addtional memory used.i.e no temporary arrays can used.
which is conditional construct a) if statement b) switch statement c) while/for d) goto
How can you call a function, given its name as a string?
why TCS selected more student in the software field from all institution.
AMMONG THE 4 STROAGE CLASSES IN C, WHICH ONE FASTEST?
Write a program to print the prime numbers from 1 to 100?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
i have to apply for the rbi for the post of officers. i need to know abt the entrance questions whether it may be aps or techinical....
Why c is called free form language?