Explain what will the preprocessor do for a program?
No Answer is Posted For this Question
Be the First to Post Answer
HOW TO FIND OUT THE RREVERS OF A GIVEN DIGIT NUMBER IF IT IS INPUT THROUGH THE KEYBORD BY USING C LANGUAGE
how can i get output like this? 1 2 3 4 5 6
i want to know the procedure of qualcomm for getting a job through offcampus
enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?
write a c program to check weather a particluar bit is set or not?
What are valid operations on pointers?
What's the difference between struct x1 { ... }; and typedef struct { ... } x2; ?
how should functions be apportioned among source files?
how many keywords do C compile?
7 Answers Microsoft, Practical Viva Questions,
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
Multiply an Integer Number by 2 Without Using Multiplication Operator
How can I get random integers in a certain range?