Answers for "c++ declare char"

C++
1

c++ declare char

// syntax: 
// char <variable-name>[] = "<string/char-you-want-to-store>"; 

// example (to store 'Hello!' in the YourVar variable): 
char YourVar[] = "Hello!";
Posted by: Guest on April-29-2020
1

c++ char define

// syntax: 
// char <variable-name>[] = { '<1st-char>',  '<2nd-char>', ... , '<Nth-char>', '\0'}; 

// example (to store 'Hello' in the YourVar variable): 
char YourVar[] = {'H','e','l','l','o','\0'}; // NOTE: the \0 marks the end of the char array
Posted by: Guest on April-29-2020

Browse Popular Code Answers by Language