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:
Why doesnt the call scanf work?
Why doesn't the call scanf("%d", i) work?
✍: Guest
The arguments you pass to scanf must always be pointers: for each value converted, scanf ``returns'' it by filling in one of the locations you've passed pointers to. To fix the fragment above, change it to scanf("%d", &i) .
2015-11-02, 1837👍, 0💬
Popular Posts:
Can you explain in GSC and VAF in function points? In GSC (General System Characteristic) there are ...
when should the volatile modifier be used? The volatile modifier is a directive to the compiler's op...
What is the benefit of using an enum rather than a #define constant? The use of an enumeration const...
What will happen in these three cases? if (a=0) { //somecode } if (a==0) { //do something } if (a===...
How To Enter Binary Numbers in SQL Statements? - MySQL FAQs - Introduction to SQL Basics If you want...