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
In which mode we open the file for read,write and append also in c ? a)W b)w+ c)r+ d)a
How many types of linked lists what are they? How many types of data structures?
18 Answers BSNL, Pivotal Software,
Can we access RAM? How? Whats the range of access? Similarly What are other hardware we can access?
can a union be self-referenced?
What is the sizeof () operator?
what is c language?
discuss the steps needed to get a program from source code to executable in a system?
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
What is the difference between array_name and &array_name?
9.how do you write a function that takes a variable number of arguments? What is the prototype of printf () function? 10.How do you access command-line arguments? 11.what does ‘#include<stdio.h>’ mean? 12.what is the difference between #include<> and #include”…”? 13.what are # pragma staments? 14.what is the most appropriate way to write a multi-statement macro?
int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?
Describe the order of precedence with regards to operators in C.