51.
Choose the correct description for control string %-+7.2f.

59.
What will be the output of the following C code?
#include <stdio.h>
int main()
{
    char str[11] = "hello";
    char *str1 = "world";
    strcat(str, str1);
    printf("%s %d", str, str[10]);
}

Read More Section(File Input Output)

Each Section contains maximum 100 MCQs question on File Input Output. To get more questions visit other sections.