您的位置:首页 > 其它

2008 July 2nd Wednesday (七月 二日 水曜日)

2008-08-01 20:28 453 查看
   If I have some little time, I will learn a little the knowledge of Visual C++.  However, the work can
not be lost.  During in Wuhan I known many people can not get a good job.  The commondities price soared up.
The more and more students pour into the human resource market, with their diploma and ceritificates.

#include <stdio.h>

#define tokening(a, b) a##b
#define stringizing(s) #s
//#define charizing(c) #@c

int main(){
  int x =1;
  int y = 2;
  int xy = 8;

  fprintf(stderr, "token value %d/n", tokening(x, y));
  fprintf(stderr, "string %s/n", stringizing(x));
  //fprintf(stderr, "char %c/n", charizing(y));

  return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  token string c