Score:-5

Coding on VS code

it flag

Hello this is my first time to learn C by a book But The code doesn't give output I installed build essential What should I do ?

int main()
{
printf("Hello World!");
}
hr flag
`int main` not `intmain`
Mahmoud Ahmed avatar
it flag
@steeldriver same problem
in flag
You may want to take this to Stack Overflow …
Score:2
in flag

There is an error in your code that you are trying to compile, that is at line 3:

intmain which needs to be replaced by int main Also Add return 0; at the list line inside main function to prevent your application return some unwanted output

Full Code:

#include <stdio.h>

int main(void) {
    printf("Hello, World!");
    return 0;
}
mangohost

Post an answer

Most people don’t grasp that asking a lot of questions unlocks learning and improves interpersonal bonding. In Alison’s studies, for example, though people could accurately recall how many questions had been asked in their conversations, they didn’t intuit the link between questions and liking. Across four studies, in which participants were engaged in conversations themselves or read transcripts of others’ conversations, people tended not to realize that question asking would influence—or had influenced—the level of amity between the conversationalists.