What do you mean by keywords in c?
No Answer is Posted For this Question
Be the First to Post Answer
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
What are the 4 types of programming language?
Does free set pointer to null?
Hai what is the different types of versions and their differences
What is declaration and definition in c?
how to set Nth bit of variable by using MACRO
Is it possible to have a function as a parameter in another function?
A woman had somany gloves and hats 22 red,34 blue, 45 white...there was power cut and she took a glove and how many gloves shud she take so that she gets a pair of glove fr each color??
What is wrong in this statement? scanf(“%d”,whatnumber);
Why static is used in c?
Can U write a C-program to print the size of a data type without using the sizeof() operator? Explain how it works inside ?
What is a volatile keyword in c?