c 2b 2b length of char 2a

Solutions on MaxInterview for c 2b 2b length of char 2a by the best coders in the world

showing results for - "c 2b 2b length of char 2a"
Noah
20 Jan 2018
1#include <iostream>
2#include <string.h>
3
4using namespace std;
5
6int main()
7{
8    char *str = "ABC";
9    cout << strlen(str) << endl;
10    return 0;
11}