What's new

C & C++ C language pa help mga paps

Rojen G Embate

Honorary Poster
Joined
Mar 12, 2018
Posts
275
Reaction
217
Points
209
Age
19
Pa help naman nito mga idol sabog na utak ko

Screenshot_20230309_201124.jpg Screenshot_20230309_201147.jpg
 

Attachments

Ano po ba ang kailangan niyo ng tulong sa C programming? Maari po ba kayong magbigay ng detalyadong katanungan o problema upang mas maging malinaw ang ating pakikipag-ugnayan?
 
Code Hello world using C program
Sure, here's the code for Hello World in C programming language:

C:
#include <stdio.h>

int main() {
   printf("Hello, World!");
   return 0;
}
In this program, we are using the printf function from the stdio.h header file to print the string "Hello, World!" on the console. The main function is the starting point of our program and return 0 is used to indicate that our program has executed successfully.
 

Similar threads

Back
Top