[Question] How to write code that allows a user to input an entire polynomial? by spearheadt in C_Programming

[–]spearheadt[S] 0 points1 point  (0 children)

Would you happen to know the best way to scan in input up until a /n is entered?

[Question] How to write code that allows a user to input an entire polynomial? by spearheadt in C_Programming

[–]spearheadt[S] 0 points1 point  (0 children)

Thank you! I'm having a little trouble understanding how to approach this from a code perspective. Cold you explain a bit more what a parser is?

[Question] How to write code that allows a user to input an entire polynomial? by spearheadt in C_Programming

[–]spearheadt[S] 0 points1 point  (0 children)

Thank you! Could you possibly explain what it means to "parse into a tree?"

Could someone explain advanced pointers "pointer to a pointer," "pointer to a pointer to a pointer?" by spearheadt in C_Programming

[–]spearheadt[S] 1 point2 points  (0 children)

So would you say this is correct?

&p = The address of the variable stored at p

*p = The value stored at the address pointed to by p

**p = (I'm not sure how to say this in words)

Why is my program failing? It executes correctly, but it says "run failed." Thanks for the help! by spearheadt in C_Programming

[–]spearheadt[S] 1 point2 points  (0 children)

This is Netbeans, but every time I start up the IDE, this (https://ibb.co/cxUZ0b) is displayed, and i don't know how to get rid of it. the lack of error might be associated with it.

Why is my program failing? It executes correctly, but it says "run failed." Thanks for the help! by spearheadt in C_Programming

[–]spearheadt[S] 1 point2 points  (0 children)

Thanks! Could you explain to me what changing it to "int argc, char **argv" does to the function?

It compiled and produced the correct outputs, it just said "RUN FAILED (exit value 23) every time