Update appNew update is available. Click here to update.
Topics

Pointers Output

Easy
0/10

Problem statement

#include <iostream>
using namespace std;
int main()
{ 
  char *ptr; 
  char Str[] = "abcdefg";
  ptr = Str;
  ptr += 5;
  cout << ptr;
  return 0;
}
Options: One or more answers may be correct