#include <stdio.h> int main() { char * a[3]={"simple", "string", "array"}; printf("%s \n",a[0]); printf("%s \n",a[1]); printf("%s \n",a[2]); return 0; }
To embed this project on your website, copy the following code and paste it into your website's HTML: