cs50/src2/hi2.c

11 lines
120 B
C

// Prints string
#include <cs50.h>
#include <stdio.h>
int main(void)
{
string s = "HI!";
printf("%s\n", s);
}