Bu yazımızda c dilinde ekrana merhaba dünya yazdıracağız.
#include <stdio.h>
int main()
{
/* printf function displays the content that is
* passed between the double quotes.
*/
printf("MERHABA DÜNYA");
return 0;
}EKRAN ÇIKTISI
MERHABA DÜNYA

