Explain what is meant by 'bit masking'?
No Answer is Posted For this Question
Be the First to Post Answer
Is it better to use a macro or a function?
What are the functions to open and close file in c language?
can we change the default calling convention in c if yes than how.........?
Define and explain about ! Operator?
What is a method in c?
how to convert an char array to decimal array
what are threads ? why they are called light weight processes ? what is the relation between process and threads ?
write a program to fined second smallest and largest element in a given series of elements (without sorting)
What is true about the following C Functions a.Need not return any value b.Should always return an integer c.Should always return a float d.Should always return more than one value.
main() { int x=10,y=15; x=x++; y=++y; printf("%d %d\n",x,y); } output??
19 Answers EBS, Ramco, Sangwin, TCS,
What is pointer to pointer in c language?
main() { float a=8.8; double b=8.8; if(a==b) printf("Equal"); else printf("not equal"); getch(); } what is the output? with reason