4 January 2020, 11:08 pm by antelove19

C programming language
Happy Coding
main.c
/* ------------------------------------------------------------ */
/* String */
/* Using char of array */
/* */
/* Author: antelove */
/* Website: antelove.com */
/* ------------------------------------------------------------ */
#include <stdio.h> // standar input output library
int main()
{
char password[] = "secret";
printf("The password is %s", password);
return 0;
}