[HackerRank] Introduction in C
https://www.hackerrank.com/domains/c Solve C Code Challenges www.hackerrank.com [1] Hello World in C #include #include #include #include int main() { char s[100]; scanf("%[^\n]%*c", &s); printf("Hello, World!\n"); printf("%s", *&s); return 0; } scanf("%[^\n]%*c", &s); https://stackoverflow.com/questions/30065675/what-does-scanf-nc-mean What does `scanf("%*[^\n]%*c")` mean? I want to make a loop ..