What does the colon signify in a C function?

前端 未结 3 1810
旧巷少年郎
旧巷少年郎 2021-01-26 22:04

What is this use of the colon called?

The following code is taken from the book Learn Core Audio.

    int main(int argc, const char * argv[])
           


        
3条回答
  •  借酒劲吻你
    2021-01-26 22:04

    Cleanup is a label. You can use

    goto cleanup;
    

    In your code to redirect your execution from cleanup label.

提交回复
热议问题