Write a program to print fibonacci series using recursion?
No Answer is Posted For this Question
Be the First to Post Answer
Can we access the array using a pointer in c language?
while running a program, i got the msg that press return key to exit.what that mean in C as there are no such options as far i know.
Write a function that accepts a sentence as a parameter, and returns the same with each of its words reversed. The returned sentence should have 1 blank space between each pair of words. Demonstrate the usage of this function from a main program. Example: Parameter: “jack and jill went up a hill” Return Value: “kcaj dna llij tnew pu a llih”
In C, What is the #line used for?
How can a process change an environment variable in its caller?
Do you know what is a programing language ?
Why do some versions of toupper act strangely if given an upper-case letter?
What are qualifiers in c?
what is Array?
What is c basic?
write the program for prime numbers?
73 Answers Accenture, Aptech, Infosys, TCS,
main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?