Skip to content

Commit

Permalink
Merge pull request #37 from sadman2084/main
Browse files Browse the repository at this point in the history
cpt 11 resolve
  • Loading branch information
SharafatKarim authored Aug 11, 2023
2 parents f82107c + 5f487c7 commit 80dce4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions solutions/sadman/11/4.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ int main()
printf("Enter the year: ");
scanf("%d", &date.year);

struct date newDate = incrementDate(date);
struct date newDate = incrementDate(date);

printf("The updated date is: %d-%d-%d\n", newDate.day, newDate.month, newDate.year);

return 0;
}
}

0 comments on commit 80dce4d

Please sign in to comment.