Files
C-Projects/VariablesPrintOut.c
2021-04-25 15:28:50 +05:30

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);
}