beta

Users » ADragon » Questions

  • How to you left justify a string in a field of specified width
    • printf("%-10d", 123);
    • printf("%-10s", "Hello");
    • printf("%10s", "Hello");
    Added by ADragon : 4th August

    3

  • What header file contains the declarations of the FILE class and its associated functions
    • ctype.h
    • conio.h
    • string.h
    • stdio.h
    • stdlib.h
    Added by ADragon : 4th August

    -1

  • What is the final value of Y
    int x = 1;
    int y = ++x + x++ - ++x;

    • undefined
    • 2
    • 3
    Added by ADragon : 4th August

    5