Get the answers you need at Westonci.ca, where our expert community is always ready to help with accurate information. Connect with a community of professionals ready to help you find accurate solutions to your questions quickly and efficiently. Get immediate and reliable solutions to your questions from a community of experienced professionals on our platform.

write a C program code should generate 4 integer values separated by a new line representing total number of participants of group A group B group c and group D respectively​

Sagot :

tonb

Answer:

#include <stdio.h>

#include <stdlib.h>

int main(void) {

    printf("%d\n%d\n%d\n%d\n", rand(), rand(), rand(), rand());

}

Explanation:

Really not a meaningful program without additional requirements...