#include <stdio.h> int main() { int p = 11, q = 12, r = 13, s = 14, t; t = r + s = q * p; printf("%d, %d\n", t, s); }
Syntax error
Previous Question Next Question
Your comments will be displayed only after manual approval.