Skip to content

C Programms

  1. Home>
  2. C Programms>
  3. Page 2

Fibonacci Series In C

  • Post author:admin
  • Post published:July 30, 2018
  • Post category:C Programms
  • Post comments:0 Comments

Hello Programmers.....Now a simple program to print the Fibonacci series. Fibonacci series is a series of the numbers in which each number is the sum of two last numbers or two…

Continue ReadingFibonacci Series In C

Star Pyramid In C

  • Post author:admin
  • Post published:July 30, 2018
  • Post category:C Programms
  • Post comments:0 Comments

#include<stdio.h> #include<conio.h> void main() { int i,j,k; clrscr(); for(i=1;i<=5;i++) { for(k=1;k<=5-i;k++) { printf(" "); } for(j=1;j<=i;j++) { printf(" *");   } printf("\n"); } getch(); } Output:

Continue ReadingStar Pyramid In C

Mirrored Right Triangle Pattern In C

  • Post author:admin
  • Post published:July 30, 2018
  • Post category:C Programms
  • Post comments:0 Comments

Simple C program to print the mirrored right triangle pattern in C. #include<stdio.h> #include<conio.h> void main() { int i,j,k; clrscr(); for(i=0;i<=4;i++) { for(k=0;k<=4-i;k++)   // for  gap -->the gap is in…

Continue ReadingMirrored Right Triangle Pattern In C

Right Triangle Pattern in C

  • Post author:admin
  • Post published:July 30, 2018
  • Post category:C Programms
  • Post comments:0 Comments

A simple C program to print a right triangle pattern by using stars. There are various types of patterns. But i will be uploading the important patterns that will help…

Continue ReadingRight Triangle Pattern in C

Floyd’s Triangle in C

  • Post author:admin
  • Post published:July 30, 2018
  • Post category:C Programms
  • Post comments:0 Comments

A simple C program to print floyd's triangle. A user enters the number of rows as seen in the output.  #include<stdio.h> #include<conio.h> void main() { int i,j,num=1,n; clrscr(); printf("enter the…

Continue ReadingFloyd’s Triangle in C

Bubble Sort program in C

  • Post author:admin
  • Post published:July 29, 2018
  • Post category:C Programms
  • Post comments:0 Comments

Repetedly swapping of numbers to sort it into ascending or descending order is called bubble sort. Step 1: 1  1  1  1 9  7  7  7 7  9  5  5…

Continue ReadingBubble Sort program in C

Switch Program in C

  • Post author:admin
  • Post published:July 29, 2018
  • Post category:C Programms
  • Post comments:0 Comments

A simple program for addition, subtraction,  multiplication, and division by switch case. #include<stdio.h> #include<conio.h> void main() { int calc,i; int a,b,c;                   …

Continue ReadingSwitch Program in C

Hello World Program in C

  • Post author:admin
  • Post published:July 29, 2018
  • Post category:C Programms
  • Post comments:0 Comments

#include<stdio.h> #include<conio.h> void main() { clrscr();     // clear screen printf("Hello World");    //to display Hello World getch();   // to pause } OUTPUT:      

Continue ReadingHello World Program in C
  • Go to the previous page
  • 1
  • 2

Recent Posts

  • Hello world!
  • How to publish the first blog post | Get Indexed | Google
  • 8 Ways to make money through blogging|Passive Income
  • Build a strong blogging brand | Best tips for blogging
  • Add Facebook page plugin to the blog

Recent Comments

  1. A WordPress Commenter on Hello world!
Copyright [oceanwp_date] - Design by Unique Ratlam Ajanta Talkies Road

WhatsApp us