![]() |
|
|
|||||||
![]() |
![]() |
![]() |
![]() |
Mark Forums Read |
| Programming :: Programming related discussions :: |
![]() |
|
|
LinkBack | Thread Tools |
|
#1
|
|
1. Programming/Scripting deals with code and the development of such code. 2. If you have a unique programming/scripting problem, don't hesitate to create a new topic. You do not need to post all C++/PHP/Perl/Java/etc questions in one thread. 3. Make use of the "code" BBcode. Text within will retain their original formatting. More information available here: http://www.istorya.net/forums/index.php?action=help Example (from one of the posts): Code:
#include
main()
{
int *a, *s, i;
s = a = (int *) malloc( 4 * sizeof(int));
for (i=0; i<4; i++) *(a+i) = i * 10;
printf("%d\n", *s++);
printf("%d\n", (*s)++);
printf("%d\n", *s);
printf("%d\n", *++s);
printf("%d\n", ++*s);
}
Last.FM Last Played Songs ![]() Blogging @ ribbed.us Visit the local gaming forum! ... BFWGaming With $10,000, we'd be millionaires! We could buy all kinds of useful things like...love! I DON'T USE OR VISIT BUY/SELL, HENCE I DON'T MODERATE IT. |
||||||
|
#2
|
|
I saw a thread that the titled has modified the title to 'Problem Solved, please close this thread'. How selfish. It should no be renamed so that it will be considered as knowledge base and other people can still read it.
This is not just a help forum right? It's also sharing of knowledge. So can you do something about it? |
||||
|
#3
|
|
The topic starter chose to change the subject. That is his choice, not ours. The post is still there, if someone wants to post a follow-up, that is his prerogative. I don't see the point of your complaint or whatever you call it.
Last.FM Last Played Songs ![]() Blogging @ ribbed.us Visit the local gaming forum! ... BFWGaming With $10,000, we'd be millionaires! We could buy all kinds of useful things like...love! I DON'T USE OR VISIT BUY/SELL, HENCE I DON'T MODERATE IT. |
|||||
|
#4
|
|
|
|||||
|
#10
|