@11:27 sir here it is siad we should avoid initilazing the address of int to char ptr as if we try to print or collect the content store at address in char ptr it will collect only of 1 byte but i tried coding it up it showed and error int ptr coversion is not possible to char ptr
#include
using namespace std;
int main()
{
int x=10;
char *ptr;
ptr=&x;
cout<<ptr<<endl;
}