sahajjain01

[*]07.Input basic salary and print gross salary.

Aug 16th, 2015
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.29 KB | None | 0 0
  1. //Program to input basic salary and print gross salary.
  2. #include<stdio.h>
  3. #include<conio.h>
  4.  
  5. void main()
  6. {
  7.     float salary;
  8.  
  9.     clrscr();
  10.  
  11.     printf("Enter basic salary: ");
  12.     scanf("%f", &salary);
  13.     printf("The gross salary for the basic salary %f is: %f", salary, salary);
  14.  
  15.     getch();
  16. }
Advertisement
Add Comment
Please, Sign In to add comment