What is openmp in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain how can I open a file so that other programs can update it at the same time?
In C, What is the #line used for?
How many levels of pointers can you have?
how logic is used
#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}
How can I make a program in c to print 'Hello' without using semicolon in the code?
9 Answers C DAC, Practical Viva Questions,
struct ptr { int a; char b; int *p; }abc; what is d sizeof structure without using "sizeof" operator??
Can a program have two main functions?
What is the purpose of sprintf() function?
1. Write a program to reverse every second word in a given sentence.
what is the difference between 123 and 0123 in c?
Can u return two values using return keyword? If yes, how? If no, why?