โช Choose the correct option.
#include
int main() {
int a,b;
printf("enter the values");
scanf("%d %d",&a,&b); // a=4 b=5
printf("a=%d b=%d ",a,b);
return 0;
}
#include
int main() {
int a,b;
printf("enter the values");
scanf("%d %d",&a,&b); // a=4 b=5
printf("a=%d b=%d ",a,b);
return 0;
}