We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- C
- Introduction
- "Hello World!" in C
- Discussions
"Hello World!" in C
"Hello World!" in C
Sort by
recency
|
660 Discussions
|
Please Login in order to post a comment
Here is hackerRank Hello world in c solution - https://programmingoneonone.com/hackerrank-hello-world-in-c-problem-solution.html
The C code they wrote is wrong. To scanf, they should pass plain "s" not "&s".
this is good
Here is Hello world in c problem solution - https://programmingoneonone.com/hackerrank-hello-world-in-c-problem-solution.html
include
int main() {
printf("hello, world! \n"); printf("welcome to c programming");
}