Advertisement
smgr

MEssi

Oct 24th, 2014
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.25 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main(void){
  5.  
  6.     char valasz[] = "";
  7.     printf("Ki a Bacelona hires csatara?\n");
  8.     scanf("%s", &valasz);
  9.     if(strcmp(valasz, "Messi") == 0)
  10.         printf("helyes");
  11.     else
  12.         printf("rossz");
  13.  
  14.     return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement