What are the types of bitwise operator?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to print all the prime numbers with in the given range
8 Answers ABC, College School Exams Tests, TCS,
write a program to swap bits in a character and return the value prototype of function char fun (char a, charb flag c) where fun returns a char, char a is a the value char b is the bit to be changed and flag c is the bit value for eg: x=fun(45,7,0) since 45 is 0010 0101 and ow x should contain the value 65 (0110 0101)
1 Answers Bosch, College School Exams Tests,
for (i <= 5 && i >= -1;++i; i > 0) { printf("%d ", i); }
where do we use volatile keyword?
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }
Explain what is wrong with this program statement?
difference between object file and executable file
what is the difference b/w NULL and null?
What is #line in c?
Describe the steps to insert data into a singly linked list.
What is selection sort in c?
WAP to accept rollno,course name & marks of a student & display grade if total marks is above 200?