I am quite new to C and I come from a Java background.
So, I wanted to declare a String and immediately tried this:
String text;
Then it tells me that the term "String" is not defined. I searched trough the internet and found this:
char text[16] = { 'E','i','n',' ','l','a','n','g','e','r',' ','T','e','x','t','\0' };
But this isn't very nice and too much work. There must be an other, better method. Maybe with importing something. Does anyone has a good solution to this?