Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
Incremental Operatiors
What will be printed as the result of the operation below:
main() {
int x=10, y=15;
x = x++;
y = ++y;
printf("%d %d\n",x,y);
}
✍: FYIcenter
Answer: 11, 16
2007-02-26, 7226👍, 0💬
Popular Posts:
What is normalization? What are different types of normalization? It is set of rules that have been ...
How To Use an Array as a Queue? - PHP Script Tips - PHP Built-in Functions for Arrays A queue is a s...
If client side validation is enabled in your Web page, does that mean server side code is not run? W...
What Are the Parameter Modes Supported by PL/SQL? - Oracle DBA FAQ - Creating Your Own PL/SQL Proced...
The following variable is available in file1.c, who can access it? static int average; Answer: all t...