Skip to main content
🔮 Output PredictionC C Hard⚡+35 XP

String vs Char

What is the difference between these two declarations?

C
char a[] = "hello";
char *b = "hello";

🔮 What is the output?