interview
Exam
Programming
Arrays
what is the output of the program??
main()
{
int a=5;
float b=5.6;
printf("%d, %fn",b,a);
}
Read Solution (Total 3)
-
- 5,5.6 this is the right asnswr
- 8 years agoHelpfull: Yes(0) No(1)
- when I execute this pgm on gcc it will give me different answers.what is the reason??
- 8 years agoHelpfull: Yes(0) No(0)
- o ,o.oooon bcz b is floating and a is int
- 8 years agoHelpfull: Yes(0) No(0)
interview Other Question
using these numbers only once find the solution of:-
numbers are: 1,3,5,7,9,11,13,15;
?+?+?+?+?=30
what a smallest number when that number devisible by 10,9,8,7,6,5,4,3,2 gives remainders 9,8,7,6,5,4,3,2,1 ??