abdelouafi
Administrator
إذا كنت ترغب في مشاهدة الصور ، يرجى النقر عليها
Blog
SUIVEZ NOTRE CHAINE YOUTUBE: قم بالتسجيل في قناتنا عبر هذا الرابط https://www.youtube.com/channel/UCCITRMWPcElh-96wCS3EyUg
devoir 1 math tronc commun
مجموعة من دروس و فروض جميع المستويات
دروس الإعدادي - دروس الثانوي الثأهيلي - دروس التعليم الابتدائي - فروض مختلف المستويات الدراسيةفضلا و ليس أمرا شارك هذه الصفحة مع أصدقائك:
a very simple program to display "Hello, World!" on the screen.
Goal: this example is used to illustrate the syntax of a programming language.
Program to Display "Hello, World!"
Output:
How "Hello, World!" program works?
Goal: this example is used to illustrate the syntax of a programming language.
Program to Display "Hello, World!"
Code:
#include <stdio.h>
int main()
{
// printf() displays the string inside quotation
printf("Hello, World!");
return 0;
}
Output:
Code:
Hello, World!
How "Hello, World!" program works?