作者bryanliu (jumping turtle)
看板CSSE
标题Re: [问题] strcpy
时间Sun Dec 26 14:23:07 2004
sorry
不过还感谢你的帮忙阿
※ 引述《reader (读者)》之铭言:
: 开板公告就说过这里不谈程式除错了,以後这类问题请到
: Programming 板或 C_and_CPP 板。
: 而且看起来你应该是想做 gets() 而不是 strcpy() 吧。
: 里头连结束条件都没有,当然是结束不了。
: 以下是 MSDN 的 getchar() 范例,就自己看吧:
: // crt_getc.c
: /* This program uses getchar to read a single line
: * of input from stdin, places this input in buffer, then
: * terminates the string before printing it to the screen.
: */
: #include <stdio.h>
: int main( void )
: {
: char buffer[81];
: int i, ch;
: /* Read in single line from "stdin": */
: for( i = 0; (i < 80) && ((ch = getchar()) != EOF)
: && (ch != '\n'); i++ )
: buffer[i] = (char)ch;
: /* Terminate string with null character: */
: buffer[i] = '\0';
: printf( "Input was: %s\n", buffer );
: }
: ※ 引述《bryanliu (jumping turtle)》之铭言:
: : 这是我自己写的
: : 不过没有办法像函式库内的可以就直接结束掉
: : 有哪位大大可以教我
: : 把它改成一样的作用
: : 谢谢搂
: : 以下是我的程式码
: : #include<stdio.h>
: : #include<conio.h>
: : #include<string.h>
: : int main()
: : {
: : char ch[1000];
: : int n,i;
: : printf("please enter a string:\n");
: : printf("this is use getchar:");
: : n=strlen(ch);
: : for(i=0;i<=n;i++){
: : ch[i]=getchar();
: : putchar(ch[i]);
: : }
: : return 0;
: : }
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 140.123.224.111