+ 1
Explanation plz
Void printSum(int a, int b) { cour<<a+b<<endl; } int main() { printSum(13) }
5 Antworten
+ 3
line no 3 : its cout
line no 7 : missing semicolon
on line no 7 you are calling the printsum function
on line no 1 to 4, you defined printsum function
+ 3
Various compile errors until you fix the code on line 3 and 7.
+ 2
after fixing answer would be garbage value + 13
+ 1
Beyond everything Sreejith mentioned, you call printSum with only one number, but it wants two.
+ 1
What is the output ?