|
#include <stdio.h>
#include <ctype.h>
#include <conio.h>
#define line 50
clrscr();
int main(void)
{
int i=0;
char chline[50];
printf("영어문자열을 입력하세요 : ");
// printf("\n");
// getchar(chline);
gets(chline);
printf("대소문자가 바뀐 영어문자열 : ");
wh
|
- 페이지 1페이지
- 가격 1,000원
- 등록일 2007.10.31
- 파일종류 기타
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
#include<stdio.h>
#include<stdlib.h>
void printhead();
int main()
{
int i=0, count=0 ;
char fname[] = "source.txt";
char ffname[] = "result.txt";
char names[80];
char number[10] = {0};
char *grade[20];
FILE *f, *ff;
float point1, point2, point3, point4, poin
|
- 페이지 4페이지
- 가격 1,000원
- 등록일 2007.10.31
- 파일종류 기타
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#define t 100;
clrscr();
int main(int argc, char *argv[])
{
char fname[] = "";
strcpy(fname, argv[1]);
char names[100];
FILE *f;
int i, cnt = 0;
int word
|
- 페이지 2페이지
- 가격 1,000원
- 등록일 2007.10.31
- 파일종류 기타
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
#include <stdio.h>
#include <stdlib.h>
struct selfref
{
int n;
struct selfref *next;
};
typedef struct selfref list;
int main(void)
{
list *first = NULL, *second = NULL, *third = NULL, *middle = NULL;
first = (list *) malloc(sizeof(list));
first->n = 100;
second = (
|
- 페이지 2페이지
- 가격 1,000원
- 등록일 2007.10.31
- 파일종류 기타
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
c언어로 만든 문자열 역순으로 출력 프로그램2 c언어로 만든 문자열 역순으로 출력 프로그램2
|
- 페이지 1페이지
- 가격 600원
- 등록일 2007.10.31
- 파일종류 기타
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
->next;
if(nextNode != NULL)
{
print(nextNode);
}
//return cnt;
}///////////////////////// 수정되어진 부분
|
- 페이지 1페이지
- 가격 1,000원
- 등록일 2007.11.21
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
C언어
- Tool : Edit Plus 2.21, Visual C++ 6.0
▪ 개발 목적
도스 환경에서 빠르고 효율적인 성능을 제공하며 사용자에게 편리한 인터페이스 환경을 고려한 회원 관리 프로그램을 만들고자 계획했습니다.
주요기술
색인 정보의 이중 관리(파일과
|
- 페이지 18페이지
- 가격 2,000원
- 등록일 2007.04.03
- 파일종류 피피티(ppt)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
프로그램을 작성하시오.
#include<stdio.h>
int main(void)
{
int a;
printf(\"양의 정수를 입력하시오:\");
scanf(\"%d\",&a);
if(a%2==0) printf(\"짝수\\n\",a);
else printf(\"홀수\\n\",a);
return 0;
}
f.두 정수를 입력 받아서 두 정수의 크기를 비교하는 프로그램
|
- 페이지 4페이지
- 가격 1,000원
- 등록일 2007.06.15
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
int num = 15;
printf(\"Enter: \");
scanf(\"%d\", &num);
hexa(num);
return 0;
}
E. 최대공약수를 구하는 문제를 반복문으로 프로그램을 작성하시오#include
int gcd(int x, int y);
int main()
{
int Input1, Input2;
printf(\"두 수를 입력 하세요 : \");
scanf(\"%d %d\", &Input1, &Input2);
print
|
- 페이지 3페이지
- 가격 1,000원
- 등록일 2007.06.15
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
입니다.n\",divide(m,n));
return 0;
}
d.두 수를 곱하는 매크로 mult(x,y)를 정의하여 다음과 같은 문장이 실행되도록 프로그램을 작성하시오.
result=mult(10,20);
mymult..h
#include<stdio.h>
#define mult(a,b) ((a)*(b))
source file
#include\"mymult.h\"
int main(void)
{
i
|
- 페이지 4페이지
- 가격 1,000원
- 등록일 2007.06.16
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|