#include
#include
#include
#include
int main(void)
{
pid_t p;
char* message;
int n;
p = fork();
if(p
{
printf("fork failed\n");
exit(1);
}
if(p==0)
{
message = "This is the child\n";
n=6;
}
else
{
message = "This is the parent\n";
n=3;
}
for(;n>0;n--)
{
printf(message);
sleep(1);
}
return 0;
}
printf(message);這條語句我覺得沒什麼問題,但gcc下運行時會報錯
myfork.c: In function ‘main’:
myfork.c:30:5: warning: format not a string literal and no format arguments [-Wformat-security]
printf(message);
^
請指點原因
只是警告,因為你用的是指針,不是字符串常量,而且沒有給參數。如果你程序運行的時候賦值"%d"之類的(當然你沒有這麼賦值,但是存在可能性),會出錯。