Answers for "how to declare strings in c++"

C++
4

how can make string value in cpp

#include <string>
string hello= "hello you thre :)";
Posted by: Guest on June-07-2020
0

How to write String in C++

char greeting[6] = {'H', 'e', 'l', 'l', 'o', ''};
Posted by: Guest on November-11-2021

Browse Popular Code Answers by Language