R
Ravi
Any statements like
printf("abc");
scanf("%d",&x);
a=20;
can be replaced by
printf("abc"), scanf("%d",&x), a=20;
So when should we use ; and when sould we use ,
printf("abc");
scanf("%d",&x);
a=20;
can be replaced by
printf("abc"), scanf("%d",&x), a=20;
So when should we use ; and when sould we use ,