Advertisement
Guest User

Untitled

a guest
Jul 17th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. c:\Temp>gcc -Wall test_vscode.c
  2. test_vscode.c: In function 'main':
  3. test_vscode.c:3:11: warning: left-hand operand of comma expression has no effect [-Wunused-value]
  4. a = (3,4);
  5. ^
  6.  
  7. c:\Temp>gcc -Wall test_vscode.c
  8. test_vscode.c: In function 'main':
  9. test_vscode.c:3:10: warning: right-hand operand of comma expression has no effect [-Wunused-value]
  10. a = 3,4;
  11. ^
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement