for (i <= 5 && i >= -1;++i; i > 0) {
printf("%d
", i);
}
how to exchnage bits in a byte b7<-->b0 b6<-->b1 b5<-->b2 b4<-->b3 please mail me the code if any one know to rajeshmb4u@gmail.com
void main() {int i=2; printf("%d%d%d",i,++i,i++); getch(); }
what are the files which are automatically opened when a c file is executed?
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
What are the types of type qualifiers in c?
How can I find the day of the week given the date?
What is Generic pointer? What is the purpose of Generic pointer? Where it is used?
Which of the following are valid "include" formats? A)#include and #include[file.h] B)#include (file.h) and #include C)#include [file.h] and #include "file.h" D)#include <file.h> and #include "file.h"
write a programme to enter some number and find which number is maximum and which number is minimum from enterd numbers.
Once I have used freopen, how can I get the original stdout (or stdin) back?
what is the code to display color fonts in the output?
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?