Calculate 1*2*3*____*n using recursive function??
No Answer is Posted For this Question
Be the First to Post Answer
Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }
How do you define structure?
Is c a great language, or what?
What is pointer to pointer in c?
Can a pointer point to null?
why the execution starts from main function
program to find the second largest word in a paragraph amongst all words that repeat more thn twice
What is modeling?
What are the properties of union in c?
What is a structure member in c?
write a C program, given number is double without using addt ion and multiplication operator?ex:n=6,ans=12,pls send me ans to goviseenu@gmail.com
What is the difference between constant pointer and pointer to a constant. Give examples.