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, 1838👍, 0💬
Popular Posts:
Write an equivalent expression for x%8? x&7
What's wrong with this initialization? char *p = malloc(10); My compiler is complaining about an ``i...
How To Use an Array as a Queue? - PHP Script Tips - PHP Built-in Functions for Arrays A queue is a s...
What is Shell scripting A shell script is a script written for the shell, or command line interprete...
If locking is not implemented what issues can occur? IFollowing are the problems that occur if you d...