What is the difference between malloc calloc and realloc in c?
No Answer is Posted For this Question
Be the First to Post Answer
can we implement multi-threads in c.
the data type used for unlimited value in c and how to do this program
Explain the difference between exit() and _exit() function?
What is the output for the following program #include<stdio.h> main() { char a[5][5],flag; a[0][0]='A'; flag=((a==*a)&&(*a==a[0])); printf("%d\n",flag); }
how to find sum of 5 digits in C?
What is c standard library?
Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .
hat is a pointer?
What does typeof return in c?
shorting algorithmS
find largest of 3 no
Explain how do you determine whether to use a stream function or a low-level function?