Display two sentences on separate lines using a single printf() statement. - C Language Basics

C examples for Language Basics:printf

Description

Display two sentences on separate lines using a single printf() statement.

Demo Code

#include <stdio.h>

int main(void)
{
  printf("this is a test?\n another test.\n");
  return 0;/*  ww  w. ja  v a  2 s. c om*/
}

Result


Related Tutorials