Write a factorial program using C.
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of keyword VOLATILE in C?
How does C++ help with the tradeoff of safety vs. usability?
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 do u mean by Direct access files? then can u explain about Direct Access Files?
What is the use of ?
Write a small C program to determine whether a machine's type is little-endian or big-endian.
What is the most efficient way to count the number of bits which are set in an integer?
How can I avoid the abort, retry, fail messages?
What are macros in C?
#include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain ؟؟؟
Explain what are reserved words?
What will be the output of following program #include main() { int x,y = 10; x = y * NULL; printf("%d",x); }