What is a macro in c preprocessor?
No Answer is Posted For this Question
Be the First to Post Answer
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
What is the output of the following program #include<stdio.h> main() { int i=0; fork(); printf("%d",i++); fork(); printf("%d",i++); fork(); wait(); }
Write the program for displaying the ten most frequent words in a file such that your program should be efficient in all complexity measures.
In C program, at end of the program we will give as "return 0" and "return 1", what they indicate? Is it mandatory to specify them?
can any one tel me wt is the question pattern for NIC exam
What is sizeof return in c?
Write a function that will take in a phone number and output all possible alphabetical combinations
C program to find all possible outcomes of a dice?
Discuss the function of conditional operator, size of operator and comma operator with examples.
How to find the usage of memory in a c program
Can you please explain the scope of static variables?
Write a program to generate the first n terms in the series --- 2,3,5,7,11,...,17