Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How does memset() work in C?

Answer Posted / glibwaresoftsolutions

memset() initializes memory to a specific value.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What do you mean by a sequential access file?

1131


Explain what is the benefit of using an enum rather than a #define constant?

1274


What is a pointer and how it is initialized?

1229


Explain Basic concepts of C language?

1233


how to capitalise first letter of each word in a given string?

1982


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); } }

2552


What is meant by type casting?

1103


Why array is used in c?

1062


What is oops c?

1339


What does do in c?

1118


What are the 5 types of organizational structures?

1133


What is abstract data structure in c?

1108


Write a Program to find whether the given number or string is palindrome.

1336


I have seen function declarations that look like this

1091


Why is %d used in c?

1056