I am trying to just write something that takes a month and date and prints it back out. I have written the following code:
int main(void){
char month[] = {};
int day;
printf("Please enter the month and day of you date. i.e January 01\n\n");
scanf("%s,%d", month, &day);
printf("Month is %s and the day is %d\n", month, day);
return 0;
}
When I input a date like December 22, I get the following print out: Month is December and date is 1. The day value is stuck printing as 1. Why isn't my day integer updating and is instead just staying stuck at 1?
This declaration
is invalid in C and C++.
At least you should write for example
In the prompt the format of the input date is shown without a comma
But in the call of scanf
there is present a comma.
The program can look for example the following way
The program output might look like
If you want to include a comma in the input string then the program can look the following way
The program output might look like
Another approach is to use function
fgets
instead ofscanf
as for exampleThe program output might look like