what will be the output of the following program?
#include <stdio.h>
void solve() {
    printf("%d ", 10/ 2);
    printf("%f", 10.0/ 2);
}
int main() {
    solve();
 return 0;
}

Posted on by