Write a C program in Fibonacci series.
write a program to find the sum of the array elements in c language?
24 Answers ICT, Infosys, Wipro,
What is data structure in c programming?
How can I find out if there are characters available for reading?
difference between c and c++?
How can I swap two values without using a temporary?
What is the use of a semicolon (;) at the end of every program statement?
How to throw some light on the b tree?
Is null equal to 0 in sql?
#include<stdio.h> #include<conio.h> void main() { int m=0111,n=20; printf("%d%d\n",m,n); getch(); }
write a program to display the numbers in the following format 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 2 2 2 2 2 3 3 3 4
What is a string?
enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?