C Programming Examples Tutorial Index

C String Programs

This C program is used to print a string on the screen input by the user.



scanf() function is used to obtain input, and printf() function is used to print the string on the screen.

Program:

#include<stdio.h>

void main()
{
    //variable definition and initialization
    char stringArray[100];

    printf("Please write something: \n");
    scanf("%s", stringArray);
    
    printf("You enter the string %s\n", stringArray);
}

Program Output:

print-string



Found This Useful? Share This Page!