0
1.5kviews
What will be the output of the following program?
written 5.7 years ago by | • modified 3.0 years ago |
Program:
Void main(){
double x =28;
int r;
r = x % 5;
printf(ā\n r = %dā,r);
A] r =3
B] Run time error
C] Compile time error
D] None of these
ADD COMMENT
EDIT
1 Answer