What is double pointer?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between the expression “++a” and “a++”?
What is boolean in c?
f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed
explain memory layout of a C program
What is a spanning Tree?
What are the header files used in c language?
difference between semaphores and mutex?
how to swap four numbers without using fifth variable?
we all know about the function overloading concept used in C++ and we all learnt abt that.... but that concept is already came in C in a very smaller propotion ... my question is IN WHICH CONCEPT THERE IS A USE OF FUNCTION OVERLOADING IS USED in C language?????????????
How many keywords are there in c?
List some basic data types in c?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }