Implement bit Array in C.
No Answer is Posted For this Question
Be the First to Post Answer
Explain the ternary tree?
Why c is called top down?
what is the difference between getch() and getche()?
What is the output of the following program main();{printf ("chennai""superkings"}; a. Chennai b. superkings c. error d. Chennai superkings
What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }
What is a stream water?
Explain what is operator promotion?
What are the types of variables in c?
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?
difference of two no's with out using - operator
what is the difference between c and c++?
Is reference used in C?