What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of the function in c?
write a program to sort the elements in a given array in c language
Define circular linked list.
Here is a neat trick for checking whether two strings are equal
what is the first address that gets stored in stack according to a C or C++ compiler???? or what will be the first address that gets stored when we write a C source code????????
How. To pass the entrance test
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Between macros and functions,which is better to use and why?
write a “Hello World” program in “c” without using a semicolon?
f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?
what is unsigened char and what is the difference from char
How can I access an I o board directly?