Skip to main content

Posts

Featured

Pointers in c++

 What is a pointer? A pointer is a unique variable that holds the address of other variables.  syntax or declaration of pointer ->   pointer_type *pointer_name; pointer_name = &variable_name; example:  int   main  () {     int   v = 10 ;     int   * p =& v;  // & sign means (address of) variable v   cout << p << " is  the address of the variable" << endl ;   cout << * p << endl ;  // prints the value using pointer     return   0 ; }

Latest Posts

PfN: season 2 LOops

Programming for NOOBS : Season 1

Programming for NOOBS

Softwares

Inside CPU

VON NEUMANN ARCHITECHTURE

NVIDIA RTX 3070, 3080, 3090