Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. int c;
  6.  
  7. printf("Enter a number: ");
  8. scanf("%d", &c);
  9. printf("You entered %d", c);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement