Write a Program in C That Printing on One Line With Two Printf Statements

// Printing on one line with two printf statements 
#include <stdio.h>

// function main begins program execution 
int main( void )
{
   printf( "Welcome " );
   printf( "to C!\n" ); 
} // end function main

0 comments:

Post a Comment

Related Posts Plugin for WordPress, Blogger...