Guest User

Untitled

a guest
Aug 14th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. {
  2. char placa[9] = "G" "A" "E" "-" "0" "2" "4" "4";
  3. cor[15] = "branco";
  4. int ano = 2001;
  5.  
  6. printf("A placa: %sn", placa);
  7. printf("A cor: %sn", cor);
  8. printf("O ano: %dn", ano);
  9.  
  10. if(cor == "branco")
  11. {
  12. printf("voce tem um carro branco n");
  13. }
  14. else {
  15. printf("voce nao tem um carro branco n");
  16. }
  17.  
  18. system("PAUSE");
  19.  
  20. return 0;
  21. }
Add Comment
Please, Sign In to add comment