Can a binary search tree be used as an index? If yes, how?
Explain
what is the difference between <stdio.h> and "stdio.h"
14 Answers Invendis, Kanbay, Mastek, MathWorks,
Should I learn data structures in c or python?
Why does the call char scanf work?
What does s c mean in text?
How do you redirect a standard stream?
What are identifiers and keywords in c?
without using arithmatic operator solve which number is greater??????????
What is difference between union and structure in c?
What is the difference b/w main() in C language and main() in C++.
how to print this sereis 2 4 3 6 5..........?
what will the following program do? void main() { int i; char a[]="String"; char *p="New Sring"; char *Temp; Temp=a; a=malloc(strlen(p) + 1); strcpy(a,p); //Line no:9// p = malloc(strlen(Temp) + 1); strcpy(p,Temp); printf("(%s, %s)",a,p); free(p); free(a); } //Line no 15// a) Swap contents of p & a and print:(New string, string) b) Generate compilation error in line number 8 c) Generate compilation error in line number 5 d) Generate compilation error in line number 7 e) Generate compilation error in line number 1
totally how much header files r in c language