Hi, when i using codeblocks to compile the following code, a warnning appeared, i have included string.h in the file, why dose codeblocks returns the warnning after compiling?
#include "stdio.h"
#include "string.h"
int main()
{
char c[]="AAA";
strlwr(c);
printf("%s\n",c);
return 0;
}
Code::Blocks is returning the Compiler Warning from the Compiler!
Please read the rules http://forums.next.codeblocks.org/index.php/topic,9996.0.html
And, then, learn about the compiler you are using; ask for compiler support elsewhere!
Tim S.
Quote from: stahta01 on October 13, 2017, 09:53:40 AM
Code::Blocks is returning the Compiler Warning from the Compiler!
Please read the rules http://forums.next.codeblocks.org/index.php/topic,9996.0.html
And, then, learn about the compiler you are using; ask for compiler support elsewhere!
Tim S.
Thanks!