드래그 앤 드롭으로
즐겨찾기 아이콘 위치 수정이 가능합니다.
게시물ID : freeboard_412562짧은주소 복사하기
작성자 : 당근토끼Ω
추천 : 1
조회수 : 421회
댓글수 : 10개
등록시간 : 2010/04/03 01:31:54
void main(){
struct{
char Name[10];
int Age;
double Height;
} Friend;
printf("\ninput name of friend : ");
scanf("%s", &Friend.Name[10]);
printf("\ninput age of friend : ");
scanf("%d", Friend.Age);
printf("\ninput height of firend : ");
scanf("%d", Friend.Height);
printf("name is %s and age is %d and height is %f", Friend.Name, Friend.Age, Friend.Height);
}
컴파일 이후 실행 시키면
Name과 Age 입력후 에러가 생깁니다.
윈도우 7에 Visual C++ 2008 Express Edition 입니다.
댓글 분란 또는 분쟁 때문에
전체 댓글이 블라인드 처리되었습니다.
새로운 댓글이 없습니다.