I've never seen that third syntax. If it's legit, it probably does the same as I and II, which are the same.
Answer:
randint
Explanation:
Just did my quiz and got a 100%
Answer:
a. (p*Main).age = 20;
Explanation:
Pointers use ->
where as normal variable use . to access its members
pMain is the pointer.
*pMain is the value inside pMain.
pMain->age = 20;
This statement equals to
(*pMain).age = 20;
Answer is option a.
when 2 people answer your question, the brainliest button will appear in the spot of the thanks button
Hope This Helps! Have A Nice Day!!
Answer:
Explanation:
A Shallow copy is a bit-wise (unit of data) copy of an object that can be found/used in an object-oriented programming language code, the copy contains all of the same exact values that exist within the original object. In a shallow copy, two or more pointers of the same type point to the same memory location.