Is there a built-in function in C that can be used for sorting data?
No Answer is Posted For this Question
Be the First to Post Answer
What are the different flags in C? And how they are useful? And give example for each in different consequences?
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
Explain what is a 'locale'?
main() { float a=3.2e40; printf("%d",a); }
what is a function method?give example?
Write a C program that computes the value ex by using the formula ex =1+x/1!+x2/2!+x3+3!+………….
Define function ?Explain about arguments?
2 Answers Geometric Software, Infosys,
Explain how can I read and write comma-delimited text?
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3
What is calloc()?
How to Clear last bit if it 1 using Macro TURN_OFF_BIT_LAST
what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }