Looking for reliable answers? Westonci.ca is the ultimate Q&A platform where experts share their knowledge on various topics. Connect with a community of experts ready to provide precise solutions to your questions quickly and accurately. Join our platform to connect with experts ready to provide precise answers to your questions in different areas.

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...