How to enter blank line after test case

please explain me in detail how to enter blank line after testcases.

just put cout<<endl;

you can use this template

#include <iostream>
using namespace std;
void solve(){
    // solve your question here
}
int main() {
    int t;cin>>t;
    while(t--){

        // DO THE WORK FOR EACH TEST CASE HERE OR CALL A FUNCTION SOLVE
        solve();

        cout<<endl;
    }
}