Displaying a string


Levels of difficulty: / perform operation:

Program

#include <stdio.h>

int main(void)
{
  printf("hello Ankit");
  return 0;
}

Result

hello Ankit