Write a program to print fibonacci series without using recursion?
No Answer is Posted For this Question
Be the First to Post Answer
Is both getch() and getchar() functions are similar? if it is similar means why these two functions are used for same usage? if it is not similar means what is the difference?
I have seen function declarations that look like this
what is the differance between pass by reference and pass by value.
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
What is the process of writing the null pointer?
Process by which one bit pattern in to another by bit wise operation is?
main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }
Explain how can I pad a string to a known length?
#include<stdio.h> #include<conio.h> void main() {clrscr(); char another='y'; int num; for(;another=='y';) { printf("Enter a number"); scanf("%d",&num); printf("squre of %d is %d",num,num*num); printf("\nwant to enter another number y/n"); scanf("%c",&another); } getch(); } the above code runs only one time.on entering 'y' the screen disappeares.what can i do?
Are pointers integers in c?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
Why are algorithms important in c program?