Displaying ./code/cs256su21code/midtermSol/p1.c/*
1. Give me a complete program that will print the phrase "I will pass this class."
and then a newline to the terminal.
*/
#include <stdio.h>
int main(){
printf("I will pass this class.\n");
return 0;
}
|