write a program fibonacci series and palindrome program in c
No Answer is Posted For this Question
Be the First to Post Answer
Give me the code of in-order recursive and non-recursive.
Can a function argument have default value?
write a c program for print your name .but,your name may be small letter mean print a capital letter or your name may be capital letter mean print a small letter .example \\enter ur name : sankar The name is: SANKAR (or) enter your name:SAnkar The name is:saNKAR
Write code for initializing one dimentional and two dimentional array in a C Program?
5 Answers Deshaw, Edutech, GMD,
Explain what is the advantage of a random access file?
Given an array of length N containing integers between 1 and N, determine if it contains any duplicates.
#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?
What are # preprocessor operator in c?
ASCII stands for
Why is c so powerful?
Is c++ based on c?
What are structure types in C?