Current location - Plastic Surgery and Aesthetics Network - Plastic surgery and medical aesthetics - 1. If integer variables A and B have been assigned 10 and 20 in the program, how can I output the values of A and B on the screen?
1. If integer variables A and B have been assigned 10 and 20 in the program, how can I output the values of A and B on the screen?
Format: printf("...a =% d * * * b =% d ",a, b); Do it.

# include & ltstdio.h & gt

int main()

{

int a= 10,b = 20

printf("...a = % d * * * b = % d”,a,b);

Returns 0;

}