Please be patient. I purchased a "Nerdkit" which teaches about electronics for basic inforamtion. It uses the C language for the chip included in the Kit. I purchased a book, "Absolute Beginnner's Guide to C" by Greg Perry. I downloaded a free version of Turbo C++ which is supposed to include plain "C". I copied the first example in the book;
/* Prints a message on the screen */
#include <stdio.h>
main()
{
printf ("This C stuff is easy!\n);
return 0;
}
I then debug and get a message, "Style of function definition is obsolete."
What is obsolete?
Any help is appreciated and I hope you understand my problem
Enjoy Life, this is not a rehearsal
/* Prints a message on the screen */
#include <stdio.h>
main()
{
printf ("This C stuff is easy!\n);
return 0;
}
I then debug and get a message, "Style of function definition is obsolete."
What is obsolete?
Any help is appreciated and I hope you understand my problem
Enjoy Life, this is not a rehearsal