What is a dynamic array in c?
No Answer is Posted For this Question
Be the First to Post Answer
Do you know the difference between malloc() and calloc() function?
What is adt in c programming?
In c language can we compile a program without main() function?
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
What is macro?
What is an auto variable in c?
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
What are the advantages and disadvantages of a heap?
Difference between null pointer and dangling pointer?
Is calloc better than malloc?
5. distance conversion: Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer
What is bubble sort technique in c?