int i=3, j=4; if( i==3 || j++ ) { printf("%d\n",j); } This will print: 5
True
False
It is possible to call a macro recursively.
We can portably use the fflush(stdin); statement to clear the remaining characters in input stream.
conio.h is an ANSI standard header file.
In declaration of function parameters, int a[5] is equivalent to int *a.
We can modify value of literals as below: char *name="David"; *name='X';
The expression: i++ * ++i; is not well defined.
Casting the return value from malloc function is necessary.
In the init(ServletConfig) method of Servlet life cycle, what method can be used to access the ServletConfig object ?
getServletInfo()
getInitParameters()
getServletConfig()
None