Please..Can anyone help me to make it C language? I really need this project..Thank you. (the code is in the deacription) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Please..Can anyone help me to make it C language? I really need this project..Thank you. (the code is in the deacription)

#include <iostream> #include <string> #include <time.h> using namespace std; int main(){ srand(time(NULL)); string one; string name[100]; int count = 0; string again; again = "y"; int num = 0; while(one != "0") { cout<<"Enter name: (0 to stop entering names)"<<endl; cin>> one; if(one == "0") break; name[count] = one; count++; } while(again == "y"){ num = rand()%count; cout<<num; cout<<"Random name chosen was "<<name[num]<<endl; cout<<"Chose again? (y/n)"; cin >> again; } cin.get(); cin.ignore(); }

8th Dec 2019, 3:55 AM
Gabriel Arguelles
Gabriel Arguelles - avatar
2 Answers
+ 1
Conversion needed: remove using namespace std; rand() to C version rand cout to prinf cin to scanf iostream to stdio.h and i think the rest are fine. #give it a try🙂
8th Dec 2019, 5:28 AM
Rohit
0
It works! Thankyou so much
8th Dec 2019, 9:30 AM
Gabriel Arguelles
Gabriel Arguelles - avatar