General statistics
List of Youtube channels
Youtube commenter search
Distinguished comments
About
Samurai Josh
Low Level
comments
Comments by "Samurai Josh" (@samuraijosh1595) on "Low Level" channel.
Previous
1
Next
...
All
@LowLevelTV bro I love you 💋💋💋
5
no. if you do this: int* a, b; you get a pointer and a int value. if you do this: int *a, *b; you get two pointers. clearly C is so designed to treat the "*" as the start of the declaration of any pointer variable. youre not declaring an int* pointer, you're int-ifying a pointer or declaring a pointer of type int...would be more accurate to describe whats actually happening there.
4
so is it basically polymorphic type like there is in haskell?
1
@Instr is the haskell sieve of erastosthenes youre referring to? primes :: [Int] primes = go [2..] where go (x:xs) = x : go (filter (\a -> a `mod` x /= 0) xs) what's wrong with this??
1
@jboss1073 No lol
1
Previous
1
Next
...
All