Why is the following code not producing any result ? A=arrange (10,50,12) b=range(90,200,20) matplotlib.pyplot.plot(a,b)
Answers
Answered by
0
Explanation:
am using VS2005 compiler and I am expecting following code to give compilation error. int a=1, b= 2, c=3; a = (b,c); value of a after assignment ...
Top answer · 5 votes
You are using the comma operator in C++, it is not commonly used. This works as follows <expression
Similar questions