c++줄 바 꿈 문자 지식 포인트 요약

c++줄 바 꿈 자 는 어떤 것 이 있 습 니까?
줄 바 꾸 기,커서 를 다음 줄 의 시작 으로 옮 기기;
endl,버퍼 의 내용 을 콘 솔 에 출력 합 니 다.
\r Enter,커서 를 현재 줄 의 시작 으로 이동 합 니 다.다음 줄 로 바 꾸 지 않 습 니 다.출력 을 계속 하면 본 줄 의 이전 내용 이 하나씩 복 개 됩 니 다.

#include <iostream>
using namespace std;  
int main() 
{ 
  cout << "this is the first line
"; cout << "this is the second line\r"; cout << "this is the third line
"; cout << "this is the fouth line\r"; cout << "this is the fifth line
"; cout<<"First"<<"
"<<"Second"<<endl; cout<<"First123"<<"\r"<<"Second"<<endl; cout<<" "<<endl<<" "; return 0; }
결과:

this is the first line
this is the third linee
this is the fifth line
First
Second
Second23
   
  
Presss any key to continue
내용 보충:
문제 에 대한 실례:
\r 가 져 올 때\0 으로 바 꿉 니 다.

#include<string.h>
#include<stdio.h>
  
int main(int argc, char *argv[])
{
  char str[128];
  while (fgets(str, 127, stdin)) {
    char *tmp = NULL;
    //     
    if (tmp = strstr(str, "
"))       *tmp = '\0';     //     if (tmp = strstr(str, "\r"))       *tmp = '\0';     printf("---%s---
", str);   }   return 0; }
c++줄 바 꿈 문자 에 대한 지식 을 정리 한 이 글 은 여기까지 소개 되 었 습 니 다.더 많은 c+줄 바 꿈 문자 에 대해 어떤 내용 이 있 는 지 예전 의 글 을 검색 하거나 아래 의 관련 글 을 계속 찾 아 보 세 요.앞으로 많은 응원 부 탁 드 리 겠 습 니 다!

좋은 웹페이지 즐겨찾기