Added book examples

This commit is contained in:
Louise Brown
2022-04-08 16:12:38 +01:00
parent 5b205092a7
commit 1c0a9e7b6a
59 changed files with 1381 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#include <stdio.h>
#include <stdlib.h>
// Main : Execution starts here...
int main(void)
{
// Declare variable - pre-populate the array
char msg[] = {'H','i',' ','W','o','r','l','d','\0'};
// Output with printf
printf ("The text is: %s\n", msg);
puts(msg); // We could also use puts to display the string
return 0; // Exit the application
}