C: The Dark Corners

Issue #1 resolved
Zajcev Evgeny created an issue

Screenshot

Why in first case it is OK and wrong in second one?

Comments (4)

  1. Pierre Neidhardt repo owner

    Because it's a typo! :p

    It should read "array = p". Thanks for catching this one!

    Pro-tip: You should copy/paste text, it's much easier than posting a screenshot. Enclose it between backquotes to display verbatim. Example:

     ```
     long array[3];
     long *p;
     p = array; // Wrong
     ```
    
  2. Log in to comment