Displaying ./code/h2sol/print.c/*
print.c
Print the phrase "I will pass this class" and a new line to the terminal
*/
#include <stdio.h>
int main(){
printf("I will pass this class.\n");
//Use the appropriate function to do the task indicated.
return 0; //Hint: The return keyword is used to signal the end of a function
//Any code below a "return" statement in a function will not be run
}
|