-
How to you left justify a string in a field of specified width
-
printf("%-10d", 123);
-
printf("%-10s", "Hello");
-
printf("%10s", "Hello");
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
-1
-
What is the final value of Y
int x = 1;
int y = ++x + x++ - ++x;
5