#include #include OUT PUT void main() { clrscr(); int a=365,s.r; s-a%10; r=s*10: cout
Attachments:
Answers
Answered by
0
Answer:
Value of s = 0
Value of r = 0
Explanation:
#include <iostream>
using namespace std;
int main()
{int a=365,s,r;
s-a%10;
r=s*10;
cout<<"Value of s="<<s<<endl;
cout<<"Value of r="<<r<<endl;
return 0;
}
Similar questions