You will write a flowchart, and C code for a program that doesthe following:
Call three functions from main(). The functions are namedfirst(), second(), and third(). Each function prints out its name(“first,” “second,” “third.”). After all three functions arecalled, the main() function should print “End of program.”
Solution
#include <stdio.h>void first() { printf(“firstn”);}void second() { printf(“secondn”);}void third() { printf(“thirdn”);}int main() { first(); second(); third(); printf(“End of program.n”); return 0;}
first
OR
OR