Home » C Programming » Strings

What will be the output of the program? #include int main() { printf(5+"CuriousTab\n"); return 0; }

Correct Answer: CURIOUSTAB

Explanation:

printf(5+"CuriousTab\n"); In the printf statement, it skips the first 5 characters and it prints "CURIOUSTAB"

← Previous Question Next Question→

More Questions from Strings

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion