initial commit
commit
b1b8426ea2
@ -0,0 +1,4 @@
|
||||
# Lecture 4: An overview of C and C++
|
||||
A long this lecture let us test two basic Hello World scripts on C and C++, respectively. The idea is to remember the compilation chain process to obtain an executable application.
|
||||
|
||||
## C-code
|
@ -0,0 +1,6 @@
|
||||
//Gerardo Marx 24/04/2021
|
||||
#include <stdio.h>
|
||||
int main(int argc, char *argv[]){
|
||||
printf("Hello World from BeagleBoard!!\n");
|
||||
return 0;
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
// Gerardo Marx 24/04/2021
|
||||
// A C++ example
|
||||
#include<iostream>
|
||||
int main(int argc, char *argv[]){
|
||||
std::cout << "Hello world from beagleboard on c++!!" << std::endl;
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue