These aren't rules ... but just general guidelines that people should follow.
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:
https://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);
}
More to come ...