Jameson wrote:
Gilb wrote:
using <stdio.h>
main()
{
printf("this is the last post so far/n ps i do know that there will be many problem with this source code because i haven't programmed c in a long time");
}
You forgot to give main() a return type. I suggest "void main()" since you don't have a return statement, though to be proper C it's a good idea to have "int main(int argc, char** argv)" and a "return 0" later in your code.
Morning all.
looking at an old 1980's C book
the term is "include" not using (that is C#

)
there is a missing # on the preprocessor command Include
i remember being told that i should always give main() a return type but in this case it doesn't matter
though i am just a newbie when it gets to programming, i have no idea what "char** argv" actually does