Sponsored Content
Full Discussion: malloc function
Top Forums Programming malloc function Post 27532 by oombera on Tuesday 3rd of September 2002 10:58:33 AM
Old 09-03-2002
What exactly is the purpose of this program? What's it supposed to do? It looks like you step through memory setting each spot to a number between 1 and 580.. then you go back and read each memory spot..

Maybe there's an easier way than this whole script... especially if the only purpose is to print the numbers from 1 to 580...
 

10 More Discussions You Might Find Interesting

1. Programming

a problem about malloc()

1 . Thanks everyone who read the post. 2 . the programe is that : #include <stdio.h> #include <string.h> void do_it(char *p) { p = (char *) malloc(100); (void )strcpy(p,"1234"); } int main(void) { char *p; do_it(p); (void )printf("p = %s \n",p); (1 Reply)
Discussion started by: chenhao_no1
1 Replies

2. Programming

malloc

hello sir since by mentioning a integer pointer and storing the integers by incrementing the pointer value then what is the purpose of malloc? u can decalre it as in t *p; several integers can be stored by incrementing the value of p, hence what is the diffrence between this... (2 Replies)
Discussion started by: rajashekaran
2 Replies

3. Programming

When to use Malloc?

Hi! I hope this is the correct forum to post the question even if I'm a newbie... I am a C-newbie (and really on the edge to be a C-addict ;) ) and have a question. When should I use malloc? To state it differently, when should I NOT use malloc? For instance, if I have an array of... (5 Replies)
Discussion started by: Tonje
5 Replies

4. Programming

malloc()

Some one please explain me what is Dynamic memory allocation and the use of malloc() function.How do we allocate memory dynamically and also the other way? (3 Replies)
Discussion started by: rash123
3 Replies

5. Programming

Malloc implementation in C

Hey Guys I am trying to implement the malloc function for my OS class and I am having a little trouble with it. I would be really grateful if I could get some hints on this problem. So I am using a doubly-linked list as my data structure and I have to allocate memory for it (duh...). The... (1 Reply)
Discussion started by: Gambit_b
1 Replies

6. UNIX for Advanced & Expert Users

Malloc Implementation in C

Hey Guys Some of my friends have got together and we are trying to write a basic kernel similar to Linux. I am trying to implement the malloc function in C and I am using a doubly linked list as the primary data structure. I need to allocate memory for this link list (duh...) and I don't feel... (2 Replies)
Discussion started by: rbansal2
2 Replies

7. Programming

Regarding the maximum memory allocated by malloc() function on HP-UX B11.11

In a 'C' program,when I am trying to allocate memory with the help of malloc () function, it is allocating the memory up to a certain limit for e.g. in my case, it is 670 MB (approx). malloc() returns NULL if I allocate more than this amount of memory.When I tried to allocate memory in chunks of... (1 Reply)
Discussion started by: vipinsachan
1 Replies

8. Programming

malloc vs new speed

Which one is faster among malloc and new? My understanding is that since new also has to call constructors after allocating memory it must be slower than malloc. Am I correct? (1 Reply)
Discussion started by: rupeshkp728
1 Replies

9. UNIX for Dummies Questions & Answers

Help with malloc()

Good day! I'm a newbie in C. I'm trying to get an unlimited input from the user using malloc then printing the inputs after the user presses enter. My code works, but there's a warning that I don't know how to fix. Please help me. Thank you. Here's my code: #include <stdio.h> #include... (6 Replies)
Discussion started by: eracav
6 Replies

10. Programming

Malloc function returning NULL

Hi All, I am using malloc function for allocating dynamic memory. When I am using below code on Linux server its working fine, but When I am trying the same code on HP UNIX server its returning NULL. below is a fragment of code in which it is giving problem. tmp = (format_tree... (4 Replies)
Discussion started by: Taher Saifuddin
4 Replies
sendsms(1)							      gnokii								sendsms(1)

NAME
sendsms - command line tool to send SMSes using gnokii SYNOPSIS
sendsms [OPTIONS] DESCRIPTION
sendsms allows you to send a SMS using gnokii not knowing the syntax of gnokii command. It is written using dialog and allows to send a text SMS choosing recipients from the phone address book or entering it manually. OPTIONS Available options: [--debug|-D] May bother with more debugging messages. For debugging purpose. --simul[ate], -S Simulation mode. Doesn't really send SMS by phone. Only simulates. For debugging purpose. --forceSMread, -s Forces sendsms to read phonebook from SIM card, and to parse the generated file in order to update the numbers' list (useful only if required to pickup number from the phone's memory). See NOTE. --forceMEread, -m Forces sendsms to read phonebook from phone memory, and to parse the generated file in order to update the numbers' list (useful only if required to pickup number from the phone's memory). See NOTE. --skipgnokiicheck, -K Skip the test of the presence of binary 'gnokii'. (It must be somewhere in your $PATH). It allows you to try this script program, even if you don't have 'gnokii' already. ;) --smsset, --setsms Allows you to preset a SMS message from STDIN. (pipe or input redirection). This message will be proposed on the 'SMS message' field during the program input cycle. --help, -h, /h display this help and exit --version, -V output version information and exit" NOTE: If you require to pickup number from phone's memory (or from SIM card), for the first time, it anyway reads phonebook from your mobile phone. (It may take a while... please, be patient ;-) BUGS
None reported. AUTHOR
Sendsms was written by Gabriele Zappi - Rimini <gzappi@inwind.it>. This manual page was written by Pawel Kot. COPYING
This program is distributed under the GNU Public License. SEE ALSO
gnokii Pawel Kot August 29, 2003 sendsms(1)
All times are GMT -4. The time now is 06:19 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy