Feedback for subjective question
Question 1: See the code below, give comments against each line and identify which line will result in error?
void main(void) {
int actual = 123;
int &other = actual;
int natural = 456;
other = ♮
}
void main(void) {
int actual = 123;
int &other = actual;
int natural = 456;
other = ♮
}
Current Answer:
Be the first to post an answer to earn 100CR.