What is the right way to use errno?
No Answer is Posted For this Question
Be the First to Post Answer
There are 21 people in a room. They have to form groups of 3 people each. How many combinations are possible? Write a C program to print the same.
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
Go through this linked list concept.While traversing through the singly linked list sometimes the following code snippet "while(head != NULL)" is used and other times "while(head->link != NULL)"is used(Here head is the pointer pointing to the first node,node has two parts data part and link part).What is the difference between head != NULL and Head->link != NULL and in which situation are they used?
How to explain the final year project as a fresher please answer with sample project
Is a pointer a kind of array?
What is the maximum no. of arguments that can be given in a command line in C.?
What is the use of a conditional inclusion statement in C?
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
Which of the following is not an infinite loop ? a.while(1){ .... } b.for(;;){ ... } c.x=0; do{ /*x unaltered within theloop*/ ... }while(x==0); d.# define TRUE 0 ... while(TRUE){ .... }
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
When you call malloc() to allocate memory for a local pointer, do you have to explicitly free() it?
What is linear search?