Explain about the functions strcat() and strcmp()?
No Answer is Posted For this Question
Be the First to Post Answer
What are the different types of C instructions?
What is the difference between class and object in c?
what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these
Explain 'bus error'?
Where is volatile variable stored?
What header files do I need in order to define the standard library functions I use?
What are dynamically linked and statically linked libraries?
What is an endless loop?
24.what is a void pointer? 25.why arithmetic operation can’t be performed on a void pointer? 26.differentiate between const char *a; char *const a; and char const *a; 27.compare array with pointer? 28.what is a NULL pointer? 29.what does ‘segmentation violation’ mean? 30.what does ‘Bus Error’ mean? 31.Define function pointers? 32.How do you initialize function pointers? Give an example? 33.where can function pointers be used?
wtite a program that will multiply two integers in recursion function
write a programming in c to find the sum of all elements in an array through function.
create a C program that displays one z,two y's,three x's until twenty six A's. plzz answer i need it tomorrow.