What is wrong with this statement? Myname = 'robin';
No Answer is Posted For this Question
Be the First to Post Answer
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} what would be the output?
What is a good data structure to use for storing lines of text?
Disadvantages of C language.
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
write a string copy function routine?
Calculate 1*2*3*____*n using recursive function??
how can we use static and extern?and where can we use this?
What is hashing in c?
What is your stream meaning?
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
palindrome for strings and numbers----Can anybody do the prog?
6 Answers CTS, TCS, Vipro Lifescience Pvt,
write a program that will accept two integers and will implement division without using the division operator if the second value is an odd number and will implement multiplication without using multiplication operator if the second value is an even number.