Learn C With Me Beginners C Tutorial If Statement

//w.a.p to take quantity and price per item and if quantity is greater than 1000 then 10% discount will be gievn. #include #include void main() { int qnt,dis=10; float rate,total=0; printf(“Enter Quantity:”); scanf(“%d”,&qnt); printf(“Enter rate”); scanf(“%f”,&rate); if(qnt>1000) { printf(“Total Rate Is :%f”,total=((qnt*rate)-(qnt*rate*dis/100))); } else { printf(“Quantity is less than 1000″); } getch(); } /*w.a.p to [...]

[ More ] July 19th, 2012 | No Comments | Posted in Programming |

Learn C With Me Beginners C Tutorial While Loop

w.a.p to display your name 5 times #include #include void main() { int i=1; clrscr(); while(i

[ More ] July 19th, 2012 | No Comments | Posted in Programming |

Learn C With Me Beginners C Tutorial

//w.a.p to take two numbers and performs addition,subtraction,multiplication,division. #include #include void main() { float a,b; clrscr(); printf(“enter 1st number”); scanf(“%f”,&a); printf(“enter 2nd number”); scanf(“%f”,&b); printf(“Result of Addition is %f”,a+b); printf(“\nResult of Subtraction is %f”,a-b); printf(“\nResult of Multiplication is %f”,a*b); printf(“\nResult of division is %f”,a/b); getch(); } //w.a.p to take Celious Temprature and convert to Feranhite [...]

[ More ] July 16th, 2012 | No Comments | Posted in Programming, Science & Technology |

Important firefox plugins that every web designer must have

9 important firefox plugins that every web designer must have 0digg Share Font Finder A useful extension with which you can identify the type/ size of font used in selected text. It also gives the color, font size, font family, line height, letter spacing and much more…. Fire FTP A simple, perfect, secure brower based [...]

[ More ] July 15th, 2012 | No Comments | Posted in Programming, Science & Technology |

Essential Linux Commands for WordPress Users

If you have limited Unix / Linux experience but are starting to use the shell to manage your WordPress installation, here are some handy command line tricks that will help you do common things a lot faster. Also, the commands listed here aren’t specific to any shell so you should be able to use them [...]

[ More ] July 14th, 2012 | No Comments | Posted in Php & MySql, Programming, Science & Technology |
  • Page 1 of 3
  • 1
  • 2
  • 3
  • >