// I'm learning arrays todays and its going great so far. But I can't seem to under that how to use character in arrays. I made this simple array and its giving me declaration syntax error. Tell me what to do.
// Also tell me the best compiler you know of. I'm using Borland c++ at the moment. And it seems really buggy.
#include <iostream>
#include <conio>
int main()
{
char name[6] {'t','a','l','h','a','\0'};
cout<<[name];