If we want that any wildcard characters in the command line arguments should be appropriately expanded, are we required to make any special provision? If yes, which?
No Answer is Posted For this Question
Be the First to Post Answer
What is basic if statement syntax?
Suppose that data is an array of 1000 integers. Write a single function call that will sort the 100 elements data [222] through data [321].
Explain the difference between abstract class and interface in c++?
How to allocate memory dynamically for a reference?
this is to swap to strings....but in output the whole strings are swapped leaving first as it is...why it is so #include<iostream.h> int main() { char a[]="ajeet"; char b[]="singh"; long x=*a; long y=*b; cout<<x<<":"<<y; x=x+y; y=x-y; x=x-y; *a=x; *b=y; cout<<x<<":"<<y; cout<<&a<<endl; cout<<&b<<endl; }
Would you rather wait for quicksort, linear search, or bubble sort on a 200000 element array? (Or go to lunch...) a) Quicksort b) Linear Search c) Bubble Sort
List out function which we can call without using object
If you don’t declare a return value, what type of return value is assumed?
What are c++ files?
How new/delete differs from malloc()/free?
Can java be faster than c++?
What is Name Decoration?