what is the advantage of software development
Answer / shubham singh
To decrease the complexcity of the user problem and fast
work
| Is This Answer Correct ? | 3 Yes | 1 No |
What are the 4 types of programming language?
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
What are the main characteristics of c language describe the structure of ac program?
What is struct node in c?
Can stdout be forced to print somewhere other than the screen?
Which one would you prefer - a macro or a function?
what is c
What is the memory allocated by the following definition ? int (*x)[10];
Which is best book for data structures in c?
What is an volatile variable?
write a program in c language to print your bio-data on the screen by using functions.
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); } }