Advertisement
rizky_herucakra

simpletest

Nov 16th, 2013
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. #include <cstdio>
  2.  
  3. void process(int i){
  4.     printf("Value = %d", i);
  5. }
  6.  
  7. void process(float f){
  8.     printf("Value =%d", f);
  9. }
  10.  
  11. int main(){
  12.     process(2);
  13.     process(2.0f);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement