? ???Mirror Mirror on the wall????????
In C, What is the #line used for?
write a program in c language to print your bio-data on the screen by using functions.
6 Answers College School Exams Tests, IBM,
How to reverse alternate words in a given line of string For Eg: my name is narasimha output : my eman is ahmisaran
What is the benefit of using #define to declare a constant?
Why the below program throughs error during compilation? #include<stdio.h> #include<conio.h> enum { ZERO, ONE, TWO, }; main() { printf("%d",&TWO); getch(); }
What is wrong with this initialization?
What is static and auto variables in c?
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
What is variable in c example?
How can you increase the allowable number of simultaneously open files?
What is typeof in c?
a<<1 is equivalent to a) multiplying by 2 b) dividing by 2 c) adding 2 d)none of the above