#Include #Include Class A (Public: Int A 55 Int &B A Int C

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

#include<stdio.h> #include<stdlib.

h> class A { public : int a=55; int &b=a; int c; }; void main() { A aa; printf(" &a = %u \n &b = %u \n &c = %u ",&aa.a,&aa.b,&aa.c); system("pause"); }

You might also like