I want tcs placement papers of 2004-2009 , its urgent
Answers were Sorted based on User's Feedback
what are the advantages & disadvantages of unions?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
What functions are used for dynamic memory allocation in c language?
what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }
what will be printed by this printf? printf("%c",printf("hi")["sharkselva"])); }
#include<stdio.h> #include<conio.h> void main() { char ch='\356'; printf("%d",ch); } o/p=-18 why?plz.explain
What is difference between function overloading and operator overloading?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
what is use of loop?
Explain indirection?
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.
What does char * * argv mean in c?