What is the difference between mpi and openmp?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

simple program for virtual function?

1 Answers  


What is the scope of local variable in c?

0 Answers  


a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none

0 Answers  


How can I call a function with an argument list built up at run time?

0 Answers  


write a program to interchange the value between two variable without using loop

1 Answers  






Design a program using an array that searches a number if it is found on the list of the given input numbers and locate its exact location in the list.

4 Answers  


struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer

0 Answers  


Explain why C language is procedural?

0 Answers   GE,


There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take turns to remove these eggs from the baskets. On each turn, a player must remove at least one egg, and may remove any number of eggs provided they all belong to the same basket. The player picking the last egg(s) wins the game. If you are allowed to decide who is going to start first, what mathematical function would you use to decide so that you end up on the winning side? Upload a C program to demonstrate the behaviour of the game.

2 Answers  


int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }

3 Answers  


write a C code To reverse a linked list

2 Answers   Motorola, Wipro,


Explain bitwise shift operators?

0 Answers  


Categories