What is the storage class of the variable sum in the following program? Not yet answered int x = 10; Marked out of 1. P
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
What is the storage class of the variable sum in the following program? Not yet answered int x = 10; Marked out of 1. P
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
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!