Can I put comments in string literals in C?

What happens if your C string literal contains comment-like delimiters?

char* my_str = "some /*string*/ with a URL https://www.google.com";

Thankfully, this “works”. That is, this program is the same as:

char* my_str = "some /" "*string*" "/ with a URL https:/" "/www.google.com";

I was concerned, because one syntax highlighter (Pygments) screws this up.

Tagged #c, #programming, #syntax-highlighting.

Similar posts

More by Jim

Want to build a fantastic product using LLMs? I work at Granola where we're building the future IDE for knowledge work. Come and work with us! Read more or get in touch!

This page copyright James Fisher 2016. Content is not associated with my employer. Found an error? Edit this page.