News:

As usual while waiting for the next release - don't forget to check the nightly builds in the forum.

Main Menu

Goodbye World Return Issue

Started by bgaster, July 02, 2019, 03:53:27 PM

Previous topic - Next topic

bgaster

Hello,

I am new to coding in C, and I was following a video series on LinkedIn Learning.  The first code did not run properly and I am awaiting a response from them, but I thought this forum may provide a faster response.

Here is the code I am using:
#include <stdio.h>

int main()
{
   puts("Goodbye, cruel world!");

   return 0;
}


The desired output is:
Goodbye, cruel world!

Process returned 0 (0x0)   excecution time: ...

my output is:
Process returned 4258096 (0x40F930)   execution time : 38.324 s
Press any key to continue.

Could someone please explain why, or hint as to how I can solve this problem?  Thank you.

Miguel Gimenez