What is output redirection?
No Answer is Posted For this Question
Be the First to Post Answer
class foo { public: static int func(const char*& p) const; }; This is illegal, why?
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?
hai iam working in sap sd module for one year and working in lumax ind ltd in desp department but my problem is i have done m.b.a in hr/marketing and working sap sd there is any combination it. can you give right solution of my problem. and what can i do?
Describe for loop and write a c program to sum the series X + x2/2! + x3 /3! + …….. up to fifteen terms.
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
Is that possible to add pointers to each other?
what is a void pointer?
What are the different flags in C? And how they are useful? And give example for each in different consequences?
How can you find the day of the week given the date?
What is signed and unsigned?
Write a program to swap two numbers without using third variable in c?
When should the register modifier be used? Does it really help?