Files
CS50---Harvard/src1/agree1.c
T
2026-05-28 10:16:10 +00:00

25 lines
383 B
C

// Comparing against lowercase and uppercase char
#include <cs50.h>
#include <stdio.h>
int main(void)
{
// Prompt user to agree
char c = get_char("Do you agree? ");
// Check whether agreed
if (c == 'y')
{
printf("Agreed.\n");
}
else if (c == 'Y')
{
printf("Agreed.\n");
}
else
{
printf("Not agreed.\n");
}
}