9 lines
179 B
C
9 lines
179 B
C
// WAP to print values of two different variables on the output screen.
|
|
|
|
void main() {
|
|
int a,b;
|
|
a=10;
|
|
b=12;
|
|
printf("The value of a=%d \nThe value of b=%d",a,b);
|
|
}
|