MCPcopy Create free account
hub / github.com/CodeWithHarry/The-Ultimate-C-Programming-Course / main

Function main

Chapter 8/04_gets.c:3–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1#include <stdio.h>
2
3int main()
4{
5 char st[30];
6 gets(st); // The entered string is stored in st!
7
8 printf("%s", st);
9 // puts(st);
10 printf("hey");
11
12 return 0;
13}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected