Herhangi bir mesajı ekrana yazdıran C programı (C program that prints any message on the screen)

 

Yeni başlayanlar serimizin ilki olarak basit bir proje seçtik.Yazıyı değiştirip istediğinizi yazabilirsiniz.

As the first of our beginners series, we have chosen a simple project. You can change the text and write whatever you want.


#include <stdio.h>
int main() {
   printf("Hello World");
   return 0;
}

Yorumlar