C
Programming and Technical
Programming
Output
#include
void main()
{
int a,b;
scanf("%d*%d%d,&a,&b);
printf("%d%d",&a,&b);
}
output???
Read Solution (Total 6)
-
- if the quote was there then it will print the address of the variable in the integer formate.....the address may occurs out of integer range then it will print the negative value...
- 10 years agoHelpfull: Yes(2) No(0)
- it will be show compile error bcz double quote(") missing in scanf.
- 10 years agoHelpfull: Yes(1) No(0)
- What if the quote was there?
- 10 years agoHelpfull: Yes(1) No(0)
- if inputs are as:
12 15
output will be:
12 123456(garbage value...) - 10 years agoHelpfull: Yes(1) No(2)
- comiple time error
- 10 years agoHelpfull: Yes(1) No(0)
- it gives errors compile time error..
- 9 years agoHelpfull: Yes(0) No(0)
C Other Question