程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> gcc-關於c語言的printf問題,在linux下運行問題

gcc-關於c語言的printf問題,在linux下運行問題

編輯:編程綜合問答
關於c語言的printf問題,在linux下運行問題

#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"之類的(當然你沒有這麼賦值,但是存在可能性),會出錯。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved