|
언어는 evaluation rules은 eager evaluation에 따른다.
⒡. 열 우선 배열인지, 행 우선 배열인지는 flag를 통해서 정할 수 있다.
예5-1)
⒞.
char B[10][Sum(a)];
a=input(keyboard);
Sum(int X) { X=X+1; return X; }
⒜.
char A[10][10];
⒝.
char B[10][Sum(a)];
int a=3;
Sum(int X){ X=X+1; re
|
- 페이지 12페이지
- 가격 1,000원
- 등록일 2015.07.21
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
c언어로 만든 Pointer의 기본개념 프로그램 c언어로 만든 Pointer의 기본개념 프로그램
|
- 페이지 1페이지
- 가격 800원
- 등록일 2007.10.31
- 파일종류 기타
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
언어 국내 서적\n");
printf("저자 : %s, 제목 : %s, 페이지수 : %d \n", mybook.author, mybook.title, mybook.pages);
printf("출판사 : %s, 가격 : %d \n", mybook.publish, mybook.price);
printf("저자 : %s, 제목 : %s, 페이지수 : %d \n", yourbook.author, yourbook.title, yourbook.pages);
print
|
- 페이지 2페이지
- 가격 600원
- 등록일 2007.10.31
- 파일종류 기타
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
#include <stdio.h>
#include <conio.h>
clrscr();
struct book
{
char title[50];
char author[50];
char publish[50];
int pages;
int price;
};
typedef struct book book;
typedef struct
{
char title[50];
char company[50];
char kinds[50];
int size;
int price;
} softw
|
- 페이지 2페이지
- 가격 700원
- 등록일 2007.10.31
- 파일종류 기타
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
언어와 C++언어의 특징
○ http://www.kitwill.co.kr/C-language.html#c C언어와 C++차이점
○ http://members.nate.com/wkddngur7800/_temp_14.htm C언어와 C++의 차이점 C언어와 C++언어의 특징
출 력
입 력
함수
클래스와 추상 자료형
생성자와 소멸자
|
- 페이지 7페이지
- 가격 1,000원
- 등록일 2005.12.03
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|