Lesson 1 (introduction).

Installation in Linux (Ubuntu) and with VirtualBox. before starting, make sure you have completed the software installation steps. Example: Write a programme that prints out “Hello world!!” /* program that prints the phrase “Hello World” on the video */ #include <stdio.h> int main() { printf(“Hello World!!\n”); return 0; } /* steps */ import file ‘stdio.h’…

By.

min read



Installation in Linux (Ubuntu) and with VirtualBox.

before starting, make sure you have completed the software installation steps.

Example: Write a programme that prints out “Hello world!!”

/* program that prints the  
phrase "Hello World" on the video */
#include <stdio.h>

int main()
{
 printf("Hello World!!\n");
 return 0;
}
/*
steps */
import file 'stdio.h'

start main as int
{
print the word "Hello World!!"
return as zero
}

To be continued …


Leave a Reply

Your email address will not be published. Required fields are marked *

en_US