Display string: special char : Control Character « Data Type « C / ANSI-C
- C / ANSI-C
- Data Type
- Control Character
Display string: special char
/* Display string: special char*/
#include <stdio.h>
void main()
{
printf("\nBe careful!!\a");
}
Related examples in the same category