Page 1 of 1

What is the storage class of the variable sum in the following program? Not yet answered int x = 10; Marked out of 1. P

Posted: Mon May 02, 2022 12:05 pm
by answerhappygod
What Is The Storage Class Of The Variable Sum In The Following Program Not Yet Answered Int X 10 Marked Out Of 1 P 1
What Is The Storage Class Of The Variable Sum In The Following Program Not Yet Answered Int X 10 Marked Out Of 1 P 1 (17.54 KiB) Viewed 25 times
What is the storage class of the variable sum in the following program? Not yet answered int x = 10; Marked out of 1. P Flag question int add(int x, int y) { int sum = x + y; return sum; } int main() { std::cout << add(x, 2) «< std::endl; } Select one: O automatic O global O static O local