Questions tagged as 'goto'

1
answer

How to use GOTO in C to implement finite automata?

This is my first time using goto in programming and I made a simple code here to try to implement automato (it should have much better modes), however my code is crashing at the time of execution, I do not know if it is a bad use of GOTO...
asked by 13.02.2016 / 17:51
1
answer

Flowchart to code conversion

I'm trying to convert a sizeable flowchart to Arduino code. The flowchart is as follows: Considering your size I would feel more comfortable using the goto command as a flow control. However I have always heard that its use is a...
asked by 18.06.2016 / 10:23
4
answers

How do I skip the "finally" block in C # when the exception is raised?

If the exception is generated, I want to know if there is a way to "skip" the execution of block finally . If there is no exception, finally executes normally. With goto did not work. Code: using System; using System.Col...
asked by 25.06.2017 / 00:54