Answer Posted / glibwaresoftsolutions
memset() initializes memory to a specific value.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What do you mean by a sequential access file?
Explain what is the benefit of using an enum rather than a #define constant?
What is a pointer and how it is initialized?
Explain Basic concepts of C language?
how to capitalise first letter of each word in a given string?
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); } }
What is meant by type casting?
Why array is used in c?
What is oops c?
What does do in c?
What are the 5 types of organizational structures?
What is abstract data structure in c?
Write a Program to find whether the given number or string is palindrome.
I have seen function declarations that look like this
Why is %d used in c?