Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <string.h>
- #include <ctype.h>
- struct student {
- char ime[50];
- char prezime[50];
- int godini;
- };
- int main() {
- struct student s;
- scanf("%s", s.ime);
- scanf("%s", s.prezime);
- scanf("%d", &s.godini);
- printf("%s %s %d\b", s.ime, s.prezime, s.godini);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement