
ictos
Members-
Content Count
75 -
Last visited
Community Reputation
0 NeutralRecent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Sounds interesting thanks!
-
Sounds interesting...
-
[METHOD] Earn Ethereum $$$ Autopilot Web Mining Script
ictos replied to sh3rry666's topic in Cryptocoins
Does it actually pay? Not hearing anything good about this site: https://www.trustpilot.com/review/cpuwin.com https://www.scambitcoin.com/cpucap/ -
Worth taking a look at these: https://www.scambitcoin.com/btcpool-io-review/ https://www.scambitcoin.com/btconline-io-review/
-
Sounds interesting!
-
HOW TO MAKE $$/BITCOIN Etc.. Daily ON AUTOPILOT WITH SOFTWARE (For Newbies)
ictos replied to sh3rry666's topic in Cryptocoins
Sounds interesting,t hanks! -
What does this mean?
-
HOW TO MINE DOGECOINS, LITECOIN, DASH, BITCOIN CASH! WEBBASED! FASTER METHOD!
ictos replied to Hawk's topic in Cryptocoins
Sounds interesting... -
[METHOD] Earn Ethereum $$$ Autopilot Web Mining Script
ictos replied to sh3rry666's topic in Cryptocoins
Thnaks lets see! -
Sounds interesting!
-
Let's take a look!
-
Need explanation about some things in C++
ictos replied to Pshyotic's topic in Programming discussions
The best way to look at recursion is as an alternative to iteration. Take the string: char szHello="Hello World"; Let's say you're implementing a simple print function that calls putc(char c) to display each character. Normally, you'd do it like: for(i=0;szHello[i]!=0;i++) putc(szHello[i]); but let's say you wanted to do it recursively (you wouldn't, but this is an example): void print(char *szString) { if (*szString) { putc(*szString); print(szString + 1); } } The risk with recursion over iteration is that you could run out of stack space. So, why would you use it? Well, say you had a data structure: struct tree { struct tree *pLeft; struct tree *pRight; char bLetter; }; Now your print function would be: void print (struct tree * pTree) { if (pTree->pLeft) print(pTree->pLeft); putc(pTree->bLetter); if(pTree->pRight) print(pTree->pRight); } Note that I'm assuming you're familiar with pointers. -
Ah, but which assembly language? If you're using a PC, you're talking x86 assembly but if you're using something like a Raspberry Pi, it's going to be ARM assembly.