How to output double quote in C

1 Answer

0 votes
#include <stdio.h>

int main()
{
    printf("c \"c++\" php\n");
    
    return 0;
}

/*
run:
 
c "c++" php

*/

 



answered May 30, 2018 by avibootz
...