How do I set up a program fill-in-the-blank question where students only need to input the missing code in the blank space without having to enter the complete program? I’ve looked at the documentation, but I can’t understand it. Could you give me a specific example? For instance, I have the following C++ program where students just need to fill in the missing code.
{ }
using namespace std;
int main(){
{ }“hello,world!";
return 0;
}