जॉइन Examsbookउत्तर :
What would be the output of the following program?
main()
{
printf (" %d%d%d ", sizeof (3.14f), sizeof (3.14), sizeof (3. 141);
}5
प्र: What would be the output of the following program? main() { printf (" %d%d%d ", sizeof (3.14f), sizeof (3.14), sizeof (3. 141); }
- उत्तर देखेंउत्तर छिपाएं
- Workspace
उत्तर :
व्याख्या :
4 8 10

