Saturday, March 31, 2012

undefined undefined

Wap to Print the Reverse of a Number

No comments
*Print the Reverse of a Number*/ #include<stdio.h> #include<conio.h> void main()  {        long num,i,sum=0,as;         clrscr();         printf("\n Program for Print the Reverse of a Number");...
undefined undefined

Wap to Calculate Profit & Loss

No comments
/*Profit & Loss */#include<stdio.h>#include<conio.h>     void main()       {  float selling_prize,buying_prize;  clrscr();  printf("\n Calculate Profit & Loss");  printf("\n Enter Purchasing Prize  for 15 Items::");...
undefined undefined

Sum of First and Last Digits of a Number

No comments
 /*Sum of First and Last Digit of a Number*/#include<stdio.h>#include<conio.h>     void main()       {  int num,sum=0,a,b;  printf("\n Sum of First and Last Digit of a four Digits Number");  printf("\n Enter A Number    ::");...

Monday, March 26, 2012

undefined undefined

Wap to print 1 12 123

No comments
/*It is complied on Turbo C++ 3.0*/  #include<stdio.h>#include<conio.h>    void main()       {  int i,result=0;  clrscr();  for(i=1;i<5;i++)  {     result=result*10+i;     printf("\n%d",result);  ...

Saturday, March 24, 2012

undefined undefined

WAP to shutdown your computer in C

1 comment
/*It is complied on Turbo C++ 3.0 Or Use CodeBlock Complier*/  #include<stdio.h>#include<process.h>    main( )         {              system("shutdown -s");          }   &nb...

Friday, March 16, 2012

undefined undefined

Write A Program Without Using Header File in C.

No comments
/*It is complied on Turbo C++ 3.0*/  We can write a program without using header-file in C language. First of All I will give a simple example to understand this concept. See the example:        #include<stdio.h>        #include<conio.h> ...

Saturday, March 10, 2012

undefined undefined

Wap to print Current date in C

No comments
/*It is complied on Turbo C++ 3.0*/  #include <stdio.h>#include <dos.h>#include<conio.h>void main(){   struct date d;   getdate(&d);   clrscr();   textcolor(2);   cprintf("Date in DD-MM-YEAR");   textcolor(6);   cprintf("\n\rThe current Date is: %d-%d-%d", d.da_day,d.da_mon,d.da_year);   get...

Saturday, March 3, 2012

undefined undefined

Calendar Project in C/C++

No comments
/*It is complied on Turbo C++ 3.0*/ /*Calendar Project  in C  */#include<stdio.h>#include<string.h>#include<conio.h>#include<process.h>int getNumberOfDays(int month,int year){   switch(month)   {      case 1 : return(31);      case 2 : if(year%4==0) return(29);       else return(28);   ...
undefined undefined

Program to accept a year and check whether the given year IS leap year or not.

No comments
/*It is complied on Turbo C++ 3.0*/# include <stdio.h> # include <conio.h>         void main( )              {                 int year;                  clrscr( );                  printf(“Enter a...
undefined undefined

Program To Read Two Numbers And Print The Sum Of Given Two Numbers.

No comments
/*It is complied on Turbo C++ 3.0*/#include<stdio.h>#include<conio.h>     void main()          {               float num1,num2,sum=0;               clrscr();               printf("\n Enter Two Number :: ");       ...
undefined undefined

Program to print text

No comments
/*It is complied on Turbo C++ 3.0*/#include<stdio.h>#include<conio.h>      void main()          {              clrscr();              printf("\n www.LovelyCoding.blogspot.com");              getch();          &nbs...
Entries RSS Comments RSS

Sample Text

Pages


Copyright © 2025 Lovely Codes
Powered by Blogger
Distributed By Free Blogger Templates | Design by N.Design Studio
Blogger Theme by Lasantha - PremiumBloggerTemplates.com