Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <string.h>
- #include <ctype.h>
- #define MAX 505
- // sekogas strukturite gi pravime nad main funkcijata
- struct student {
- char ime[51]; // niza od karakteri
- int godini; // cel broj
- };
- int main()
- {
- struct student s;
- scanf("%s", s.ime);
- scanf("%d", &s.godini);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement