How does memset() work in C?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
memset() initializes memory to a specific value.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
memset() initializes memory to a specific value.
| Is This Answer Correct ? | 0 Yes | 0 No |
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
Explain spaghetti programming?
Method Overloading exist in c ?
What is the value of c?
what is the difference between global variable & static variable declared out side all the function in the file.
What is union and structure?
void main() { int a=1; while(a++<=1) while(a++<=2); }
What is the difference between macros and inline functions?
Magic square
Explain how do you convert strings to numbers in c?
main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }
how many argument we can pas in in a function