Write a C program in Fibonacci series.
No Answer is Posted For this Question
Be the First to Post Answer
write an algorithm to get a sentence and reverse it in the following format: input : I am here opuput: Here Am I note: first letter of every word is capiatlised
What will be the outcome of the following conditional statement if the value of variable s is 10?
What will be the output of the following program #include<stdio.h> void main() { int i=20; i-=i+++++i++; printf("%d",i); }
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
When should a type cast be used?
Program to find the value of e raised to power x using while loop
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
The __________ attribute is used to announce variables based on definitions of columns in a table?
What is a stream?
What is pre-emptive data structure and explain it with example?
When the macros gets expanded?