Thread
:
simple program problem - need help
View Single Post
•
•
Join Date: Sep 2008
Posts: 429
Reputation:
Solved Threads: 15
Denniz
Offline
Posting Pro in Training
Re: simple program problem - need help
0
#
2
Nov 9th, 2008
Some C compiler will give you a warning when your main function does not return an integer.
In this case, do the following changes to the main function:
Help with Code Tags
C Syntax
(
Toggle Plain Text
)
int
main
(
)
{
......
......
return
0
;
}
int main() { ...... ...... return 0; }
Founder of :
Lexel Technologies Pte Ltd - SMS (TXT) Marketing software solution
My Blogs:
Gooner's Sanctuary
Pet Directory and Forum:
FurryTale.net
Denniz
View Public Profile
Find all posts by Denniz