GETS.C
Upload User: qq5388545
Upload Date: 2022-07-04
Package Size: 29849k
Code Size: 0k
Category:

GUI Develop

Development Platform:

C/C++

  1. #include <stdio.h>
  2. void main(void)
  3.  {
  4.    char string[256];
  5.    printf("Type in a string of characters and press Entern");
  6.    gets(string);
  7.    printf("The string was %sn", string);
  8.  }