Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,860 questions

51,781 answers

573 users

How to use the goto statement to get out of loop inside if statement in C

1 Answer

0 votes
#include <stdio.h>
#include <string.h>
#include <stdlib.h>

extern char **environ;

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

    if (environ != NULL) {
        for (size_t i = 0; environ[i]; ++i) {
            puts(environ[i]);
            if (strncmp(environ[i], "Common", 6) == 0) {
                puts("END");
                goto END;
            }
        }
        printf("environ not found\n");
    } END:


    return 0;
}



/*
run:

ALLUSERSPROFILE=C:\abcxyz
APPDATA=C:\abc\xyz\AppData\Roaming
asl.log=Destination=file
CommonProgramFiles=C:\Program Files (x86)\Common Files
END

*/

 



answered May 4, 2021 by avibootz

Related questions

1 answer 143 views
2 answers 197 views
2 answers 157 views
1 answer 149 views
1 answer 126 views
...