FILLSTR.C
资源名称:C.rar [点击查看]
上传用户:qq5388545
上传日期:2022-07-04
资源大小:29849k
文件大小:0k
源码类别:

界面编程

开发平台:

C/C++

  1. #include <stdio.h>
  2. void main(void)
  3.  {
  4.    char string[128];
  5.    int index = 0;
  6.    int letter;
  7.    printf("Type in a string and press Entern");
  8.    while ((letter = getchar()) != 'n')
  9.      string[index++] = letter;
  10.    string[index] = NULL;
  11.    printf("The string was: %sn", string);
  12.  }
  13.