Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Writing your first "Hello, World!" program
#1
The "Hello, World!" program is a simple introductory program that prints the text "Hello, World!" to the console. Here's how you can do it:

#include <stdio.h>

int main() {
    printf("Hello, World!\n");
    return 0;
}
Also follow me on Youtube for videos about video games:
https://www.youtube.com/channel/UCxfkGVU...2mQ/videos
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Writing clean and maintainable code in C Qomplainerz 0 232 07-25-2023, 01:31 PM
Last Post: Qomplainerz
  Reading and writing files in C Qomplainerz 0 236 07-25-2023, 01:23 PM
Last Post: Qomplainerz

Forum Jump:


Users browsing this thread: 3 Guest(s)