26 lines
556 B
C
26 lines
556 B
C
// Implements a phone book without structs
|
|
|
|
#include <cs50.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
int main(void)
|
|
{
|
|
// Arrays of strings
|
|
string names[] = {"Carter", "David", "John"};
|
|
string numbers[] = {"+1-617-495-1000", "+1-617-495-1000", "+1-949-468-2750"};
|
|
|
|
// Search for name
|
|
string name = get_string("Name: ");
|
|
for (int i = 0; i < 3; i++)
|
|
{
|
|
if (strcmp(names[i], name) == 0)
|
|
{
|
|
printf("Found %s\n", numbers[i]);
|
|
return 0;
|
|
}
|
|
}
|
|
printf("Not found\n");
|
|
return 1;
|
|
}
|