Delicious Digg Facebook Favorites More Stumbleupon Twitter

Thursday, 30 August 2012

Reverse floyds triangle

         Reverse floyds triangle :-        #include<stdio.h>       main()      {        int i,j,k;       i=7;       for(j=3;j>=0;j--)      {       for(k=0;k<=j;k++)     ...

Program to print multiplication table

     Program to print multiplication table :- #include<stdio.h>main(){  int r,i,j,k;   printf("Enter the number range: "); scanf("%d",&r);  for(i=1;i<=r;i++){  for(j=1;j<=10;j++)           printf("%d*%d=%d ",i,j,i*j); printf("\n"); }  return 0...

Palindrome number

    Palindrome number:-    #include <stdio.h>  main() {    int n, n1, rev = 0, rem;   printf("Enter any number: \n");   scanf("%d", &n);   n1 = n;   while (n > 0)  {   rem = n % 10;   rev = rev * 10 + rem;   n = n / 10; }   if (n1 == rev)  {   printf("Given number is a palindromic...

Check prime number up to n

     Check prime number up to n:- #include<stdio.h>main() {  int num,i,count,n; printf("Enter max range: "); scanf("%d",&n);for(num = 1;num<=n;num++){  count = 0;for(i=2;i<=num/2;i++){ if(num%i==0){ count++; break; } }if(count==0 && num!= 1)   printf("%d ",num); }return 0...

Check prime number up to 100

   Check prime number up to 100 :- #include<stdio.h> main(){ int n,i,count;for(n = 1;n<=100;n++){ count = 0;for(i=2;i<=n/2;i++){ if(n%i==0){ count++;break; } if(count==0 && n!= 1)printf("%d ",n); }return 0;}...

program for prime number

        prime number:- #include<stdio.h>int main(){int n,i,count=0;printf("Enter a number: "); scanf("%d",&n); for(i=2;i<=n/2;i++){if(n%i==0){ count++;break; } }if(count==0 && n!= 1) printf("%d is a prime number",n);elseprintf("%d is not a prime number",n);return 0;} output:-                 Enter a number:...

program for fibonacci series

  Program for Fibonacci series #include<stdio.h> main() {    int a,b,c,i;    clrscr();    a=0;    b=1;    printf("fibonacci series is\n:%d\t%d\t",a,b);    for(i=0;i<5;i++)    {            c=a+b;            a=b;           ...

Tuesday, 28 August 2012

a program for "for loop"

              A Program for "for loop"       Syntax :-                       {                         for( initialization;condition;incrementation/                                               ...

a program for do-while loop

               A program for do-while loop                 syntax :-                                        ...

program for while loop

                        Program for while loop               syntax :-                                 ...

loops

           Loops of C-Programming language         Loop is a statement, it calls itself more than one time,         when the condition gets satisfied.                                   ...

Monday, 27 August 2012

program for swapping 2 numbers

               Program for Swapping 2 Numbers              #include<stdio.h>              main()              {                  ...

program for even/odd number

                  Program for even/odd Number            #include<stdio.h>            main()           {               int a;              ...

ladder if-else condition

                        Ladder if-else Condition                It is used for comparision between the variables,               ...

nested if-else condition

                      Nested if-else Condition                 It is used for comparision between more than                 ...

Sunday, 26 August 2012

if-else condition

                      if-else Condition                 It is used for comparision between only                 ...

if-else multiple statement condition

           if-else multiple statement condition                 It is used for comparision between more than                 ...

if-else single statement condition

               if-else single statement condition                 It is used for comparision between two  variables,                ...

Conditions of the variables

                Conditions of the Variables            Condition is a comparison between variables.            Conditions are divided in to 5 types.                      ...

Saturday, 25 August 2012

Execute the program

                     Execution of program                  Execution window:-                        ...

compile the program

                     Compilation of program          compilation window:-                     ...

save the program

                     Save the program                 saving window:-       ...

Friday, 24 August 2012

start write a program

                     Start write a program                             ...

icon for c

             After installation of C, you will find a desktop icon created.              Clicking on the TurboC++ icon opens  the below window                                                                            ...