convert c++ code to c online code example
Example 1: cpp online compiler
Best Site With auto compile :
https://godbolt.org/z/nEo4j7
Example 2: convert c++ code to c online
#include <bits/stdc++.h>
using namespace std;
int recurFunct(int n)
{
if (n==1)
return 1;
return recurFunct(n-1) + 2*n-1;
}
int main()
{
int n;
cin>>n;
for (int i=2; i<=n+1; i++)
{
cout<<recurFunct(i)<<" ";
if (i%8 ==0 )
cout<<"\n";
}
return 0;
}