Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <string.h>
- ///////////////////////////////////////////////////
- struct Man
- {
- char szName[99];
- int nOld;
- }M1, M2;
- Man M3;
- ////////////////////////////////////////////////////
- int main() //
- {
- Man M4;
- M3.nOld = 11;
- strcpy(M3.szName, "Jhon");
- printf("%d, %s \n", M3.nOld, M3.szName);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement