我一直收到此错误
box2.c: In function 'printchars':
box2.c:26:4: warning: passing argument 1 of 'printf' makes pointer from integer without a
cast [enabled by default]
/usr/include/stdio.h:363:12: note: expected 'const char * __restrict__' but argument is
of type 'char' box2.c:26:4: warning: format not a string literal and no format arguments [-Wformat-security]
box2.c:39:8: warning: passing argument 1 of 'printf' makes pointer from integer without a cast [enabled by default]
/usr/include/stdio.h:363:12: note: expected 'const char * __restrict__' but argument is of type 'char'
box2.c:39:8: warning: format not a string literal and no format arguments [-Wformat-
security]
当我尝试用gcc编译这个程序时
#include <stdio.h>
void printchars(char c, int n);
int main( int argc, char*argv){
int n = argv[1];
char c = argv[2];
int nn = atoi(n);
printchars(c, nn);
return 0;
}
void printchars(char c, int n){
int x;
for (x = n + 2 ; x > 0; x--){
if (x != 1 && x != n){
printf(c);
int count = n;
while (count - 2 != 0){
printf(" ");
count--;
}
}
else{
int num = n;
while (num != 0){
printf(c);
num--;
}
}
printf("\n");
}
}
我一直试图解决这个问题,但不断得到同样的错误。 任何帮助将不胜感激。该程序旨在打印出一个这样的框,给出了多少和制作它的角色。
./box2 5 #
#####
# #
# #
# #
# #
#####
答案 0 :(得分:8)
下面
printf(c);
您将字符而不是格式字符串作为printf()
的第一个参数传递。它应该是
printf("%c", c);
或者
putchar(c);
答案 1 :(得分:1)
一年后我就知道了,但请记住,#可以用作shell的内联注释。
所以&#34; ./ box2 5#&#34;将argc作为1,将argv作为仅包含一个位置的字符串数组:&#34; 5&#34;。
#之后的任何内容都会在shell调用你的程序之前被丢弃。