23 lines
345 B
C
23 lines
345 B
C
// Compares two strings using strcmp
|
|
|
|
#include <cs50.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
int main(void)
|
|
{
|
|
// Get two strings
|
|
char *s = get_string("s: ");
|
|
char *t = get_string("t: ");
|
|
|
|
// Compare strings
|
|
if (strcmp(s, t) == 0)
|
|
{
|
|
printf("Same\n");
|
|
}
|
|
else
|
|
{
|
|
printf("Different\n");
|
|
}
|
|
}
|