글
#include <stdio.h> int iCnt; |
연습문제2
#include <stdio.h>
|
구조체 배열의 초기화
#include <stdio.h> struct person { char name[20]; char phoneNum[20]; int age; }; int main() { struct person arr[3]={ {"이승기", "010-1212-0001", 21}, {"임윤아", "010-3453-0002", 20}, {"티파니", "010-7521-0003", 30} }; int i; for(i=0; 3>i; i++) printf("%s %s %d \n", arr[i].name, arr[i].phoneNum, arr[i].age); return 0; } |
'C언어' 카테고리의 다른 글
20140410 구조체 변수와 포인터 (0) | 2014.04.10 |
---|---|
20140409 구조체 효율높이기 (0) | 2014.04.09 |
20140307 입출력함수 (0) | 2014.04.07 |
20140304 표준 입출력과 버퍼 (0) | 2014.04.04 |
20414 함수 포인터와 void 포인터 (0) | 2014.04.01 |
RECENT COMMENT