What is the output of this code?
    #include <stdio.h>
    #include <iostream>
    using namespace std;
    int main()
    {
        char str[5] = "OWL";
        cout << str[3];
        cout << str;
        return 0;
    }

Posted on by