int randomValue = qrand() % 100; view = new QWebView(this) ; view->load(QUrl("http://blogsearch.google.com/blogsearch?q=C&start="+randomValue+"&num=1&output=rss"));
There was an error occured:
error: invalid operands of types 'const char*' and 'const char [18]' to binary 'operator+'
So, I want to append the randomValue in Url code. How do I do it?