Simple printf examples

Problem Statement
Write a c program to print ''hello world'
#include<stdio.h>
int main()
{
  printf("hello world \n");
  return 0;
}

No comments:

Post a Comment