what is the result of this? main(){ int p, q, r ,s; p=1; q=2; r=p,q; s= (p,q); printf("p=%d q=%d", p,q) ; }
C. p=2 q=1
B. p=1 q=2
D. Invalid Syntax
A. p=1 q=1​