How can I implement sets or arrays of bits?
No Answer is Posted For this Question
Be the First to Post Answer
What is difference between union and structure in c?
write a program to print infinte number
what is the difference between c and c++?
What is ctrl c called?
Give a method to count the number of ones in a 32 bit number?
write a program to find a given no. is divisible by 3 or not without using any arthimetic operators?
write a program to print largest number of each row of a 2D array
how to implement stack work as a queue?
what is the output of the below code? main( ) { printf ( "\nOnly stupids use C?" ) ; display( ) ; } display( ) { printf ( "\nFools too use C!" ) ; main( ) ; }
how many times does the loop iterated ? for (i=0;i=10;i+=2) printf("Hi\n");
What are the languages are portable and platform independent?Why they are like that?
Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?