Welcome to Westonci.ca, the Q&A platform where your questions are met with detailed answers from experienced experts. Get expert answers to your questions quickly and accurately from our dedicated community of professionals. Get precise and detailed answers to your questions from a knowledgeable community of experts on our Q&A 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...