|
Visual C++6.0에서 실시하는 법
【 2】프로그램의 구조
[ 3] 변수
[ 4] 글로벌변수
[ 5] 기억장소의 종류
[ 6] 자동변수
[ 7] 정적변수
[ 8] 자동변수와 정적변수의 차이
[ 9] 정적외부변수와 자동국소변수의 유효범위
[10] 외부정적으로 선언
|
- 페이지 28페이지
- 가격 3,000원
- 등록일 2004.05.16
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
stdio.h>
#include<string.h>
#define ANS \"허수\"
void main()
{
char a[40]=\"apples\";
char b[40]=\"copy\";
strcpy(b,a);
printf(\"%s\\n%s\\n\", a, b);
}
[11]과제물 - Visual C로 로또소스 만들기
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
void main()
{
int n1, n2, n
|
- 페이지 17페이지
- 가격 2,000원
- 등록일 2007.03.24
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
// Data.cpp : 구현 파일입니다.
//
#include \\"stdafx.h\\"
#include \\"Draw.h\\"
#include \\"Data.h\\"
// CData
CData::CData()
{
}
CData::~CData()
{
}
// CData 멤버 함수
void CData::Serialize(CArchive& ar)
{
if (ar.IsStoring())
{ // storing code
ar << m_nDra
|
- 페이지 5페이지
- 가격 2,000원
- 등록일 2012.05.17
- 파일종류 압축파일
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
Visual Studio 2005 입니다. #include
#include "legend.h"
#include
int main(void)
{
prolog(); // 프롤로그 출력
int i;
exp_max[0] = 100; //초기 경험치, 체력, 각종 무기 초기화
hp_max[0] = 100;
weapon_slevso[0] = 10;
weapon_sl
|
- 페이지 35페이지
- 가격 3,000원
- 등록일 2009.07.06
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
= km * mile;
printf(\"%d마일은 %.2f 킬로미터 입니다.\\n\",mile,km);
getch();
return 0;
}
64.
#include<stdio.h>
#include<conio.h>
int main()
{
int cost,money,change;
printf(\"물건값 입력 : \");
scanf_s(\"%d\",&cost); // visual studio 2008에서의 scanf형태(경고가 떠서 이걸로
|
- 페이지 87페이지
- 가격 3,000원
- 등록일 2012.03.13
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|