Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2020
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.27 KB | None | 0 0
  1. #include<stdio.h>
  2. #include <stdlib.h>
  3.  
  4. main()
  5. {
  6.     char nome [12];
  7.     int num;
  8.    
  9.     printf("Digite seu nome:");
  10.     scanf("%c", &nome);
  11.    
  12.     printf("Digite seu cadastro:");
  13.     scanf("%i", &num);
  14.    
  15.     printf("Seu nome: %c \nSeu cadastro: %i", nome,num);
  16.    
  17.    
  18.     system("pause>null");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement