What is exit() function?
No Answer is Posted For this Question
Be the First to Post Answer
How to removing white spces in c programming only bu using loops
how many header file is in C language ?
44 Answers College School Exams Tests, CTS, IBM, IMS, Infosys, ME, Sign Solutions, Wipro, XVT,
Can you please explain the difference between syntax vs logical error?
What is a buffer in c?
int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?
WRITE A PROGRAM IN C TO MULTIPLY TWO 2-D ARRAYS
Write a program to print distinct words in an input along with their count in input in decreasing order of their count..
Differentiate between #include<...> and #include '...'
Is it possible to initialize a variable at the time it was declared?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); } what is the output?
7 Answers AMCAT, HCL, Ramco, Zycus Infotech,
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?