'Dev.' 카테고리의 글 목록 (22 Page)
문자열 공부 scanf, string
#include void main() { //apple /*char fruit[6] = { 'a', 'p', 'p', 'l', 'e' };*/ char fruit[6] = "apple"; printf("%s", fruit); } #include void main() { //""; : 빈 문자열 char fruit[6] = ""; printf("과일이름: "); scanf_s("%s", &fruit, sizeof(fruit)); printf("%s 는 맛있어!!", fruit); } #include void main() { const char* fruit = "apple"; //const 직접 접근해서 주소를 바꾸지 말라는 의미 fruit = "banana"; printf("%s", fruit); //*f..
2022. 3. 4.
c언어 변수&ram 공부, LNK1104 에러
복습 변수:저장공간 x = 10 x(저장공간의 이름 대입) =(연산자) 10(값,상수) 변수의 선언 자료형 변수명=값; *: 기본형 자료형(종류 - type) 자료형 type byte 값 정수형 *int(기본형) 4 3,5,-234,123... long 4(32bit),8(64bit) 3L,5L,-234L,123L... 실수형 float 4 3.0F, 0.0F, -4516.516F... *double(기본형) 8 3.0, 0.0, -4516.516... 문자형 Char 1 'a', 'A', '0' ....(한글은 1byte가 넘어가므로 담을수없다) 문자열 ? ?? "abc", "ABC" "홍", "길동" .. 코드 치고 콘솔창 띄우려고 하니까 exe파일을 불러올 수 없다는 에러가 떴다 어디서부터 잘못된건..
2022. 2. 17.