Are the following two statements semantically same?
#1 person p("Rahul", 20);
#2 person const &p = person("Rahul", 20);
EDIT:
Sorry, I meant to ask whether the following two are semantically same:
#1 person const p("Rahul", 20);
#2 person const &p = person("Rahul", 20);