Answers for "how to add in array in c"

C
0

how to add in array in c

#include <stdio.h>
int main(){
	char str_value[100];
	printf("Enter the string : ");
	scanf("%s",&str_value);
	printf("%s",str_value); 
	return 0;  
}
Posted by: Guest on September-08-2021

Code answers related to "C"

Browse Popular Code Answers by Language