What is string concatenation in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is unsigened char and what is the difference from char
what is the difference between #include<> and #include”…”?
What does int main () mean?
main() { float a=8.8; double b=8.8; if(a==b) printf("Equal"); else printf("not equal"); getch(); } what is the output? with reason
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,
What are structures and unions? State differencves between them.
In a switch statement, explain what will happen if a break statement is omitted?
What is ## preprocessor operator in c?
What is the difference between strcpy() and memcpy() function in c programming?
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
Explain what is operator promotion?
Is Exception handling possible in c language?