I have recently started learning c and am using the dev-c++ compiler. I am extremely new and am attempting to write the hello world program, here is my source #include int main(void) { (indent here) printf("Hello, world!\n")...
I have recently started learning c and am using the dev-c++ compiler. I am extremely new and am attempting to write the hello world program, here is my source
#include
int main(void)
{
(indent here) printf("Hello, world!\n")
(indent here)return 0;
}
after compiling and linking source code, I was alerted to no errors and nothing wrong with my code, but, alas, when trying to run the .exe, nothing happened, is there something I am forgetting?