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.
And his newline escape code should be \n not /n, it's #include <stdio.h> too.