Advertisement
fouzimedfouni

Functions in C

Feb 8th, 2015
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.22 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3.  
  4. doublethe(int n1)
  5. {
  6.  n1 *= 2;  
  7.  printf("the double of your number is : %i",n1) ;
  8. }
  9.  
  10. main()
  11. {
  12. int num1;
  13. printf("enter the number here : ");
  14. scanf("%i",&num1);
  15. doublethe(num1);
  16. getch();
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement