Baris Teks String

#include <stdio.h>
//You can use the fgets() function to read a line of string. 
//you can use puts() to display the string.
//to solve spacing problem in scanf()
int main()
{
    char name[30];
    printf("Enter name: ");
    fgets(name, sizeof(name), stdin);  // read string
    printf("Name: ");
    puts(name);    // display string
    return 0;
}
Open Okapi