Skip to content
forked from cs50/check50

This is check50, a command-line program with which you can check the correctness of your programs.

License

Notifications You must be signed in to change notification settings

OanhTran143/check50

 
 

Repository files navigation

// Become familiar with C syntax // Learn to debug buggy code

#include <cs50.h> #include <stdio.h>

int main(void) { // Ask for your name and where live string name = get_string("What is your name? "); string location = get_string("Where do you live? ");

// Say hello
printf("Hello, %s, from %s\n", name, location );

}

About

This is check50, a command-line program with which you can check the correctness of your programs.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 94.1%
  • HTML 5.9%