Advertisement
EconomicSerg

Uhhh Part 2

Jan 6th, 2021
314
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.21 KB | None | 0 0
  1. #include <stdio.h>
  2. int main() {
  3.  
  4.     printf("Enter an integer: ");
  5.  
  6.     // reads and stores the input
  7.     scanf("%d", number);
  8.  
  9.     //displays output
  10.     printf("You entered: %d", number);
  11.  
  12.     return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement