Mega Code Archive

 
Categories / C Tutorial / String
 

Displaying a string with a string terminator in the middle

#include <stdio.h> int main(void) {   printf("The character \0 is used to terminate a string.");   return 0; } The character