본문 바로가기

분류 전체보기149

printf함수에서 특수 문자를 출력하는 초보자의 C printf에서 큰 따옴표(“ ”)를 나타내기 위해서는 \(백스래시)를 붙여서 표현을 한다. printf("강아지는 \"멍!멍!\" 하고 짓는다."); \a 경고음소리 발생 \b 벡스페이스 \f 폼 피드 \n 개행 \t 수평탭 \v 수직탭 \\ 백슬래시 \‘ 작은 따옴표 \“ 큰 따옴표 2009. 6. 28.
두개의 double형 실수를 받아 사칙연산의 결과를 출력하는 초보자의 C /* 두개의 실수를 받아 사칙연산의 결과를 출력 문제 출처 : 열혈강의 C 프로그래밍 */ #include main(void) { double a,b,c,d,e,f; printf("두개의 정수를 입력하시오\n"); scanf("%lf %lf",&a,&b); c = a - b; d = a + b; e = a * b; f = a / b; printf("%lf - %lf 의 값은 %lf 입니다.\n", a, b, c); printf("%lf + %lf 의 값은 %lf 입니다.\n", a, b, d); printf("%lf * %lf 의 값은 %lf 입니다.\n", a, b, e); printf("%lf / %lf 의 값은 %lf 입니다.\n", a, b, f); return 0; } 2009. 6. 28.
Amazing grace.... Amazing grace! how sweet the sound That sav'd a wretch like me! I once was lost, but now am found, Was blind, but now I see. 'Twas grace that taught my heart to fear, And grace my fears reliev'd; How precious did that grace appear, The hour I first believ'd! Thro' many dangers, toils and snares, I have already come; 'Tis grace has brought me safe thus far, And grace will lead me home. The Lord h.. 2009. 6. 28.
논리 연산자를 사용한 초보의 C 연산자 연산자의 의미 결합성 && 피연산자가 모두 참이면 true를 반환 (and의 의미) → || 피연산자 중 하나라도 참이면 true를 반환(or의 의미) → ! 피연사자가 true면 false를, false이면 true를 반환 (not의 의미) ← /*논리 연산자*/ #include int main(void) { int uio1 = 10; int uio2 = 12; int result1, result2, result3; result1 = (uio1==10 && uio2==12); result2 = (uio12); result3 = (!uio1); printf("result1 : %d \n", result1); printf("result2 : %d \n", result2); printf("result.. 2009. 6. 28.