Mega Code Archive

 
Categories / C / Language Basics
 

Simple string ouput

#include <stdio.h> int main(void) {   printf("hello");   /* printf("there"); */   return 0; }