2012年4月17日 星期二

TQC+ C語言認證範例 707


struct student{
       char name[20];
       int score;
       };
typedef struct student ST;
#include<stdio.h>
#include<stdlib.h>
int main(){
    ST* stname;
    stname->name="John";
    stname->score=90;
    printf("%s的分數為%d\n",stname->name,stname->score);
    system("pause");
    return 0;
}

沒有留言:

張貼留言