Displaying a string with printf - C String

C examples for String:Display

Description

Displaying a string with printf

Demo Code

#include <stdio.h>

int main(void)
{
  printf("The character \0 is used to terminate a string.");
  return 0;/*from   w  ww .j av  a 2 s  .c om*/
}

Result


Related Tutorials