C Language , C Programs, Data Structures, Simplified C programs, easy C programs
Programming with C language| C Program with escape sequence \"
\":: Inserts double quote character.
#include <stdio.h>
int main() {
printf("My name is \"Johnny\".");
return 0;
}
OUTPUT of the above Program:
My name is "Johnny".
No comments:
Post a Comment