My issue
why the / and 4 is written after sizeof
My code
#include <bits/stdc++.h>
using namespace std;
int main() {
int rohan[6] = {10, 20, 30, 40, 50, 60};
cout << sizeof(rohan) / 4;
return 0;
}
Learning course: Learn C++
Problem Link: CodeChef: Practical coding for everyone