What Is Parallel Programming In C? Does Anyone Know?

Asked By 5 points N/A Posted on -
qa-featured

What do you mean by parallel programming in c, I came across this term and I would be thankful if anyone would be kind enough to tell me the answer.

SHARE
Answered By 90 points N/A #295595

What Is Parallel Programming In C? Does Anyone Know?

qa-featured

Parallel programming is using up multiple processors for each process. It means that the program is divided into groups and those groups run through their different processors.

There are two models for parallel programming, shared memory model and distributed memory model.

As the name suggests, the shared memory model has all the processes connected to the one shared memory space whereas in the distributed model each process has its unique memory.

Related Questions