/dpt/ - Daily Programming Thread

What are you working on, Jow Forums?

Last thread:

Attached: programming languages timeline.png (4912x3050, 1.02M)

Other urls found in this thread:

twitter.com/skirani/status/1149302828420067328
ivm.sourceforge.net/icvmcpp.html
app.klipse.tech/
stackoverflow.com/a/77336
twitter.com/NSFWRedditImage

go to hell

in b4
>OP is not anime
>OP is not amphibian
Here. Happy?

Attached: aa.jpg (214x236, 11K)

getting a new pair of programming socks. Recommend me some if you can! teehee :3

>haskell from scheme, not ml
what?
i wish i could report this

Are you a 10x programmer, user?

twitter.com/skirani/status/1149302828420067328

please don't make me look at brown people

Forgive me for asking a simple question, I only just started learning programming two weeks ago.

So in this recursive function, the compiler isn't even compiling the code below the recursive step, i.e. the if (min < A[n - 1]) stuff, until it reaches the base case correct?

int findMaxRec(int A[], int n)
{
int min;

if (n == 1)
{
return A[0];
}
else
{
min = findMaxRec(A, n - 1);//recursive step

if (min < A[n - 1])
{

return min;
}
else

return A[n - 1];


}

}

char* *********x;

>that butthurt guy absolutely seething