Difference between revisions of "IPC144 Code Samples 20131"
(Created page with '{{IPC144 Index | 20131}} = Code Samples =') |
(→Hello World) |
||
(One intermediate revision by one other user not shown) | |||
Line 2: | Line 2: | ||
= Code Samples = | = Code Samples = | ||
+ | == Introduction == | ||
+ | === Hello World === | ||
+ | <pre> | ||
+ | // Hello World | ||
+ | // hello.c | ||
+ | |||
+ | #include <stdio.h> | ||
+ | |||
+ | int main (void) | ||
+ | { | ||
+ | printf("Hello World\n"); | ||
+ | return 0; | ||
+ | } | ||
+ | </pre> |
Latest revision as of 08:26, 8 May 2022
IPC144 | Code Samples | Videos | Student Resources | Glossary
Code Samples
Introduction
Hello World
// Hello World // hello.c #include <stdio.h> int main (void) { printf("Hello World\n"); return 0; }