「C言語」gets()とputs()関数の使い方

サンプルコード

#include <stdio.h>
 
int main( )
{
   char str[100];
 
   printf( "Enter a value :");
   gets( str );
 
   printf( "\nYou entered: ");
   puts( str );
   return 0;
}

$./a.out
Enter a value :arkgame.com

You entered: arkgame.com

C++

Posted by arkgame