Answer Posted / nirmal super star
a fns. is set of instructions that perform a specifide task
which repeatedly occurs in main prgm. .
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the use of #define preprocessor in c?
explain how do you use macro?
What are disadvantages of C language.
What is c language & why it is used?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
What is #include stdio h?
Can a pointer be null?
State the difference between x3 and x[3].
What are all different types of pointers in c?
Is javascript based on c?
In C programming, how do you insert quote characters (‘ and “) into the output screen?
Why is %d used in c?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }