add tag
AryanXdProYT
#include<iostream>
using namespace std;
int main(){
    for(int i=0;i++<100;){
        cout<<(i%3==0&&i%5==0)?"FizzBuzz":(i%3==0?"Fizz":(i%5==0?"Buzz":i));
        cout<<endl;     
    };
    return 0;
}
                   
I need more less code for golf coding in c++ and also best way to convert integer to string

Enter question or answer id or url (and optionally further answer ids/urls from the same question) from

Separate each id/url with a space. No need to list your own answers; they will be imported automatically.