Write a program to print factorial of given number using recursion?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int arr[5]={23,67}; printf("%d%d%d",arr[2],arr[3],arr[4]); }
Define circular linked list.
How can I implement a delay, or time a users response, with sub-second resolution?
what is the benefit of c30
main() { int i; printf("%d",((i=1)*i-- - --i*(i=-3)*i++ + ++i)); } ans is 24 bt how?pls tell smbody............
write a c program that prints all multiples of 3between 1 and 50.
What are the ways to a null pointer can use in c programming language?
6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1
Can an array be an Ivalue?
how to find the kth smallest element in the given list of array elemnts.
What is the use of bit field?
Explain how can I avoid the abort, retry, fail messages?