Write a program to print fibonacci series without using recursion?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between break and continue?
What is the value of y in the following code? x=7;y=0; if(x=6) y=7; else y=1;
Explain what is the stack?
Explain what is the advantage of a random access file?
How would you find a cycle in a linked list?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
What is the difference between local variable and global variable in c?
write a program to display all prime numbers
In how much time you will write this c program? Prime nos from 1 to 1000
what is a void pointer?
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We.....Are....Student “ Note: one .=1 Space Output: "We Are Student"