Description Write a .c file that when compiled creates an output file that does the following: Asks the user for their name. Says hello to the user by name. Write a makefile that when invoked with make creates an output file named welcome that has the above properties. Your code should run when the following two lines are entered in order. make ./welcome Sample output: What is your name? > Nick Hello, Nick. A sample run: What's your name? (output from program) Nick (input from user) Hello, Nick. (output from program) Instructions Please attach your .c file and your makefile. If there are special instructions for running your code please include them in the textbox, but keep in mind that assignments which differ from the assignment directions will be docked points.