본문 바로가기
Program Language/C

format not a string literal and no format arguments

by Leo 리오 2011. 11. 11.
반응형


  1. char* c;
  2. printf(c);

귀찮아서 위처럼 썼더니

warning : format not a string literal and no format arguments


  1. char* c;
  2. printf("%s",c);
 
반응형

댓글