|
#include <stdio.h>
struct complex
{
double real;
double img;
};
typedef struct complex complex;
complex paircomplex1(complex com);
void printfcomplex(complex com);
void paircomplex2(complex *com);
int main(void)
{
complex comp={3.4, 4.8};
complex pcomp;
printfcomplex(comp);
|
- 페이지 1페이지
- 가격 800원
- 등록일 2007.10.31
- 파일종류 기타
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
프로그램을 만들어 보도록 한다
1.1 시작
출력프로그램 [예제 1]
#include <stdio.h>
main()
{
printf(“hello, world \ n”);
}
출력 : hello, world
[예제1] 프로그램 설명
Stdio- 표준 입출력 라이브러리
Main – 다른 함수들을
|
- 페이지 20페이지
- 가격 3,000원
- 등록일 2008.06.24
- 파일종류 피피티(ppt)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
프로그램 **
//** **
//****************************************************************
#include<stdio.h>
#define MAX 100 // 배열의 SIZE
#define VAL 5 // 값의 크기
int input_one(int arr_one[]); // 첫번째 배열의 입력 함수
int input_two(int arr_two[]); // 두
|
- 페이지 4페이지
- 가격 800원
- 등록일 2004.11.16
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
프로그램 동작의 일시중지를 말한다.
interrupt [EXT_INT0] void external_int0(void)
{
/* 외부 인트럽트 0이 걸리면 자동으로 호출
} 1. 변수 및 상수
2. 상수
3. 형 변환
4. 입출력 연산
5. 연산자와 수식
6. 제어 문장
7. 함수
8.포인터와 배
|
- 페이지 22페이지
- 가격 3,000원
- 등록일 2010.10.22
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
int Calc_Cost(int cost); // 자동차 비용을 계산하는 함수
int Calc_payments(int cost); // 자동차 가격 더하는 함수
int Calc_interest(int cost, int pay); // 할부이자를 계산하는 함수
int Calc_maintenance(int cost); // 유지비를 계산하는 함수
int Calc_operatingexpenses(int cost)
|
- 페이지 15페이지
- 가격 800원
- 등록일 2007.04.23
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|