橘子味的心
标题:C库函数 - printf()

C库函数 - printf()

#include <stdio.h>



int main () {

   int ch;



   for( ch = 75 ; ch <= 100; ch++ ) {

      printf("ASCII value = %d, Character = %c\n", ch , ch );

   }



   return(0);

}

目录

分类