/* Read input from STDIN. Print your output to STDOUT*/
#include<stdio.h>
#include<string.h>
int main(int argc, char *argv[])
{
char input[10000];
fgets(input, sizeof(input), stdin);
printf(“Hello Techgig\n”);
printf(“%s”, input);
return 0;
}

/* Read input from STDIN. Print your output to STDOUT*/
#include<stdio.h>
#include<string.h>
int main(int argc, char *argv[])
{
char input[10000];
fgets(input, sizeof(input), stdin);
printf(“Hello Techgig\n”);
printf(“%s”, input);
return 0;
}
Hi, this is a comment.
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
Commenter avatars come from Gravatar.