im using the borland turbo c++ compiler. I have it installed correclty but when i try to run the basic "hello world" program i get this "warning w8065
call to function 'Printf' with no prototype in function main" i would greatly apprieciate it if some one could tell me what it means and how to fix it.

Recommended Answers

All 4 Replies

#include <stdio.h> ? Or post the code in question.

> call to function 'Printf' with no prototype in function main"
Or maybe check the spelling. C is case sensitive, so Printf is not the same as printf

i have fixed the problem with the code but there seems to be a problem with my compiler. " error e1233: unable to execute command 'ilink32.exe' " is the message i get. i have specified the path in the enviroment varriables, and i have created the 2 cfgs. I am at a loss for ideas on how to fix it, Any suggestions?

Turbo C++ is an old compiler and does not necessarily comply to C99 standards. The best thing is to use GCC or Visual C++.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.