Computer Science, asked by Prishoe6025, 10 months ago

C program to read and display one dimensional characters data type

Answers

Answered by vaishnavik052
0

Answer:

#include<stdio.h>

#include<conio.h>

void main()

{

char name[100];

printf("enter your name");

scanf("%s",name);

printf("%s is your name");

getch();

}

Explanation:

hope you were expecting  this..

Similar questions