#include <stdio.h>
#include <cs50.h>
int main(void)
{
String name = get_string("Please enter your name:");
printf("Hello, %s\n", name);
}
Source: Harvard, CS50
Monday, August 24, 2020
clang compile error message: hello.c:5:26 ......... this tells you to look on line 5 character 26
it can't tell you exactly what's wrong, but can tell you approximately where it is happening.....start googling
Subscribe to:
Posts (Atom)