Quantcast
Channel: Pass variables to other functions in C - Stack Overflow
Viewing all articles
Browse latest Browse all 3

Answer by Ajith C Narayanan for Pass variables to other functions in C

$
0
0
void outer_function(redisContext  *c, redisReply **reply) {
    *reply = redisCommand(c, "MY-REDIS-COMMAND");
    ...    
    return;
}

int main(int argc, char **argv) {
    ...
    redisContext *c;
    redisReply *reply;
    ...
    outer_function(c,&replay);
    return 0;
}

Viewing all articles
Browse latest Browse all 3

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>