convery this code to C languge
#include <iostream>
using namespace std;
int main()
{
string input = "hello world";
for(int i=0;i<input.length();i++)
{
if(input!=' ')
{
cout<<input;
}
else
{
break;
}
}
return 0;
}
convery this code to C languge #include using namespace std; int main() { string input = "hello world"; for(i
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am