Can you please explain the difference between strcpy() and memcpy() function?
Write a C program to find the smallest of three integers, without using any of the comparision operators.
What are the primitive data types in c?
Why is c so important?
What is the sizeof () operator?
Give a fast way to multiply a number by 7
15 Answers Accenture, Aricent, Microsoft,
What is page thrashing?
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
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
How many types of operator or there in c?
What is the significance of scope resolution operator?
0 Answers Agilent, ZS Associates,
what is the disadvantage of using macros?