Difference between strdup and strcpy?
No Answer is Posted For this Question
Be the First to Post Answer
how to swap two numbers with out using temp variable
12 Answers Global eProcure, TCS,
What is set in c++?
1. What does the following do: void afunction(int *x) { x=new int; *x=12; } int main() { int v=10; afunction(&v); cout<<v; } a) Outputs 12 b) Outputs 10 c) Outputs the address of v
What is a far pointer? where we use it?
What will happen if I allocate memory using "new" and free it using "free" or allocate sing "calloc" and free it using "delete"?
How do I use turbo c++?
What does ctime() do?
Disadvantages of c++
What relational operators if statements in c++?
What is == in programming?
How can you quickly find the number of elements stored in a a) static array b) dynamic array ?
What is the maximum combined length of command line arguments including the space between adjacent arguments?