Skip to content

Instantly share code, notes, and snippets.

@fromdev
Created August 16, 2017 03:15
Show Gist options
  • Save fromdev/31005241be21292150e12c31deee0201 to your computer and use it in GitHub Desktop.
Save fromdev/31005241be21292150e12c31deee0201 to your computer and use it in GitHub Desktop.
Raspberry Pi First Program Hello World
#include<stdio.h>
#include<conio.h>
void main()
{
Printf("Hello World!");
getch();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment