#include <stdio.h>
#define CHAR_SET 256
void main (void)
{
int i;
#if CHAR_SET ==256
printf("display full ASCII character set plus extension");
#else
printf("displaying only ASCII charaters set ")
#endif
printf("\n");
for (i=0; i<CHAR_SET; i++)
printf("%c", i);
}
當我試圖編譯它會出現以下錯誤: 在函數「主」: char.c:6:警告:的「主」返回類型不是「INT」顯示ASCII字符
我該如何解決這個問題?
您的代碼沒有正確縮進。 – kev 2012-03-05 16:31:06