How can I find out how much free space is available on disk?
No Answer is Posted For this Question
Be the First to Post Answer
Do you know what is the purpose of 'extern' keyword in a function declaration?
How do I convert a string to all upper or lower case?
What does dm mean sexually?
Write a code to remove duplicates in a string.
write a C program : To find out the number of identical words in two files . the file name should be taken as command line argument .
how i m write c program 1.check prime number 2.prime number series
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
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); }
27 Answers Advent Global Solutions, CitiGroup, Valeo Lighting Systems India Private Limited, Vishal Transformers, Wipro, Zencer,
Efficient data structure for store/search list of 1000 records a)array b)double linked list c)circular queue d)hash table
write a program for odd numbers?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
How does C++ help with the tradeoff of safety vs. usability?