|
C", "Al Kelly", "홍릉과학출판사", 830, 24000);
book mybook = {"C@PL.com", "강 환수", "학술정보", 530, 20000};
software visualc = {"Visual C++", "MS", "개발도구", 500, 800000};
printf("C 언어 국내 서적\n");
printf("저자 : %s, 제목 : %s, 페이지수 : %d \n", mybook.author, mybook.ti
|
- 페이지 2페이지
- 가격 600원
- 등록일 2007.10.31
- 파일종류 기타
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
int *reary, *cary;
int i = 0;
printf("calloc()은 초기화를 0으로 한다. >> \n");
cary = (int *) calloc(2, sizeof(int));
if(cary == NULL)
{
printf("메모리 할당이 문제가 있습니다. \n");
exit(EXIT_FAILURE);
|
- 페이지 2페이지
- 가격 600원
- 등록일 2007.10.31
- 파일종류 기타
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
price;
} software;
typedef struct
{
char title[50];
char author[50];
char publish[50];
int pages;
int price;
} ybh;
int main(void)
{
book yourbook = {"A book on C", "Al Kelly", "홍릉과학출판사", 830, 24000};
book mybook = {"C@PL.com", "강 환수", "학술정보", 530, 20000};
|
- 페이지 2페이지
- 가격 700원
- 등록일 2007.10.31
- 파일종류 기타
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|