Categories:
.NET (357)
C (330)
C++ (184)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (2)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
If I can say... why can't I say...
If I can say
char a[] = "Hello, world!";
why can't I say
char a[14];
✍: Guest
Strings are arrays, and you can't assign arrays directly. Use strcpy instead: strcpy(a, "Hello, world!");
2016-03-11, 1668👍, 0💬
Popular Posts:
How Large Can a Single Cookie Be? - PHP Script Tips - Understanding and Managing Cookies How large c...
How can JavaScript make a Web site easier to use? That is, are there certain JavaScript techniques t...
What are the core functionalities in XML .NET framework? Can you explain in detail those functionali...
How To Create an Add-to-Netvibes Button on Your Website? - RSS FAQs - Adding Your Feeds to RSS News ...
How To Escape Special Characters in SQL statements? - MySQL FAQs - Introduction to SQL Basics There ...