A. ++i increments the value after usage, while i++ increments it before ++i उपयोग के बाद मूल्य बढ़ाता है, जबकि i++ पहले इसे बढ़ाता है
B. ++i increments the value before usage, while i++ increments it after ++i उपयोग से पहले मूल्य बढ़ाता है, जबकि i++ बाद में इसे बढ़ाता है
C. Both are the same दोनों एक जैसे हैं
D. i++ is a syntax error. i++ एक सिंटैक्स त्रुटि है
Correct Answer is :
B. ++i increments the value before usage, while i++ increments it after