-->
Way of C Learning - CPU(2110003)
Facebook
Jasper Roberts
-
Blog
Pages
Home
CPU Syllabus
CPU Theory
CPU Assignments
CPU Experiments
CPU Tutorials
CPU Papers
CPU Books
About Author
Wednesday, October 15, 2014
Write a c program to print first n Fibonacci numbers.
#include<stdio.h>
#include<conio.h>
void main()
{
int num1=0, num2=1, num3, n, i;
clrscr();
***READ MORE***»
Write a c program to reverse a given number.
#include<stdio.h>
#include<conio.h>
void main()
{
int num, i;
clrscr();
printf(“Enter the number:”);
***READ MORE***»
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)