Write a program to print fibonacci series without using recursion?
No Answer is Posted For this Question
Be the First to Post Answer
How will you divide two numbers in a MACRO?
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output
What does 2n 4c mean?
Find errors (1) m = ++a*5; (2) a = b ++ -c*2; (3)y = sqrt (1000);
What is the most efficient way to count the number of bits which are set in an integer?
main() { int a=5; printf(?%d,%d,%d\n?,a,a< <2,a>>2); } Answer: 5,20,1 please explain this code in detail
Explain the difference between structs and unions in c?
Write a program to check prime number in c programming?
what are the stoge class in C and tel the scope and life time of it?
Give the output for the following program. #define STYLE1 char main() { typedef char STYLE2; STYLE1 x; STYLE2 y; clrscr(); x=255; y=255; printf("%d %d\n",x,y); }
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
what is the difference between #include<stdio.h> and #include"stdio.h" ?