Happy About the progress

This commit is contained in:
2026-05-28 10:16:10 +00:00
commit 79415e38db
92 changed files with 1326 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
#include <cs50.h>
#include <stdio.h>
int main(void)
{
string name = get_string("Name: ");
int age = get_int("Age: " );
string phone = get_string("Phone number: ");
string location = get_string("what's your location? " );
// Correct Version of This program is
// int age = get_int("Age: ");
// int phone = get_int("Phone: ")";"
// Location is correct on the above program so its okay.
// printf("Name:, %s\n", name);
// printf("Age:, %s\n", age);
// printf("Location:, %s\n", location);
printf("New Contacts: %s, %i, lives in %s, and can be reached at %s\n", name, age, location, phone );
}