Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- int main() {
- char firstName[20];
- char crash[20];
- int numberOfbabies;
- printf("What is your name? \n");
- scanf("%s", firstName);
- printf("Who are you going to marry? \n");
- scanf("%s", crash);
- printf("Hom many kids will you have? \n");
- scanf("%d", &numberOfbabies);
- printf("%s and %s are in love, and will have %d babies", firstName, crash, numberOfbabies);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment