Discover the answers you need at Westonci.ca, a dynamic Q&A platform where knowledge is shared freely by a community of experts. Discover comprehensive answers to your questions from knowledgeable professionals on our user-friendly platform. Discover detailed answers to your questions from a wide network of experts on our comprehensive 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...