write a program fibonacci series and palindrome program in c
No Answer is Posted For this Question
Be the First to Post Answer
to find the closest pair
Why is %d used in c?
Write a program to print this triangle: * ** * **** * ****** * ******** * ********** Don't use printf statements;use two nested loops instead. you will have to use braces around the body of the outer loop if it contains multiple statements.
what is real time system?what is the differance between hard and soft real time systems
Explain how can type-insensitive macros be created?
void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?
What is the meaning of && in c?
What is the return type of sizeof?
Is the exit() function same as the return statement? Explain.
0 Answers Agilent, ZS Associates,
char *p="name"; printf(p);
What is the general form of function in c?
Can we increase size of array in c?