What is meant by recursion?
No Answer is Posted For this Question
Be the First to Post Answer
How we can insert comments in a c program?
how to convert binary to decimal and decimal to binary in C lanaguage
7 Answers BPO, Far East Promotions, IBM, RBS,
what is object oriental programing?
plz answer.... write a program that reads line (using getline) e.g."345", converts each line to an integer using "atoi" and computes the average of all the numbers read. also compute the standard deviation.
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
Why does notstrcat(string, "!");Work?
write a program to interchange the value between two variable without using loop
Explain the use of function toupper() with and example code?
What is line in c preprocessor?
for(;;) printf("C language") What is out put of above??
2 Answers Practical Viva Questions,
What is a good way to implement complex numbers in c?
say the following declaration is correct nr not. int b=a,n=0;