GCC Fails to Recognize Parameters Programming by snah19 …/** @name Logging context. */ /*@{*/ static const char *urlcontext_to_name(void *ptr) { URLContext *h = (URLContext *)ptr; if …name; else return "NULL"; } static void *urlcontext_child_next(void *obj, void *prev) { URLContext *h = obj; if… Help with functions - basics Programming by verrandhack … i still don't understand commands like str, file, value, void, readName, and so forth but i know i need to… Re: GCC Fails to Recognize Parameters Programming by Reverend Jim I can't offer any suggestions other than to just download the compiled app for your system instead of building it yourself. Re: GCC Fails to Recognize Parameters Programming by rproffitt Here's another problem. When we change the OS not only must we setup the compiler, environment and such but sometimes an OS API could be deprecated or removed. You made mention of a possible OS change so that's a possibility. You obtained this code from somewhere. Go back there and see if they updated it for your new OS. Re: Help with functions - basics Programming by rproffitt Rather than dive into c++ like that, try tutorials like we see at https://www.w3schools.com/cpp/cpp_functions.asp Re: Help with functions - basics Programming by jkon It seems that the issue has nothing to do with C++ or with functions. If you are new to programming why not try some tutorials in an easy accessible language (like JavaScript for example) and when you understand a few basics ( like null , functions , variables , loops , conditions ) move to a C++ tutorial for beginners ? Re: Help with functions - basics Programming by learnerya Starting from the basics, I have just started learning Mysidia Adoptables PHP Help Programming Web Development by techtheclone … HashMap $fields * @access public * @return void */ public function setFields(HashMap $fields){ $this-&…SubController $subController * @access public * @return void */ public function setSubController(SubController $subController){ $this-&… Re: Mysidia Adoptables PHP Help Programming Web Development by rproffitt While I've used ImageMagick over a decade ago, I didn't use it from PHP. So I suggest you work this with a MVE (minimal viable example.) That is, start with working code and change ONE LINE. No more. Then share that line and the new line so I can see if I can find Waldo. Re: Mysidia Adoptables PHP Help Programming Web Development by Dani I can look into this tomorrow if you still need help. Sorry, I’ve been feeling sickly yesterday and today. Re: Mysidia Adoptables PHP Help Programming Web Development by jkon PHP is pretty good and expressive with warning , error and exception messages. If you don't understand anything from the messages that you get please write more about what exactly you don't understand and we could make it clearer. But ... ignoring warnings is a bad practice because there is a probability to lead in fatal errors , so first fix the … Re: JTABLE HEADER GROUP Programming Software Development by Jan_315 Hi, I have the same problem. Do you already know the solution? Thanks Re: JTABLE HEADER GROUP Programming Software Development by Jan_315 I have found it. These lines are necessary: private JTable table = new JTable( dm ) { protected JTableHeader createDefaultTableHeader() { return new EtsGroupableTableHeader(columnModel); } }; Re: c++ OOP Mortgage Calculator Programming Software Development by Salem void Re: Void Programming Software Development by 21310051 Void in java means that no value will be returned. If your method is of type int, that method will return an integer value... if your method is of type string, that method will return a string value... but a void method will return nothing. Re: Void Function Programming Software Development by deceptikon … a function without return type.... `void` *is* the return type. You just can't do much … to add, it is not considered good programming to write void functions That's not true at all. Please don't… returning a status code for the sake of not returning void is the opposite of a good practice. Re: void functions 2 Programming Software Development by Narue …, you [b]must[/b] name each of the parameters: [code] void printAttitude ( int [B]name[/B] ) { [/code] >if (int == 1… Re: Void Function Programming Software Development by vikas221 void permit a function without return type.... Assigning a byearray to a void pointer Programming Software Development by nitin1 void func(void * ptr) { bytearray temp(10); *((bytearray*) ptr ) = temp; } This code is … third line while executing while this coding is working fine. void func(void * ptr) { const char * temp = "decept"; *((char*)ptr… Re: Can anyone tell me about the VOID Type? Programming Software Development by thines01 void means a function (either) does not return …s placed [CODE] //Takes a string; returns nothing public static void DoSomething(string strData) { //...code goes here return; //optional } … a string; takes no parameters public static string DoSomething(/*implied void*/) { //...code goes here return "some string"; //… Re: Why NOT void main() Programming Software Development by sujitkumarsingh void main() { unsigned int i=65537; float j=2.25; printf("%d",i*j); getch(); } Re: Return type void Programming Software Development by Helmyano void means that the function has no return data Re: functions Programming Software Development by T-Dogg3030 void functions do have a return type, they return void. In some languages, you can say "return void" others you can't. Re: Parse Issue? Programming Software Development by mattboy64 void Final(); { printf ("\n\n .|||||||||||||.\n"); printf (" .|||||||||||||||||||||.\n&… RTOS problem Hardware and Software Linux and Unix by ajay.joshi.56 …printf("generating task3 failed\n"); } void t1(void) { timer_t task1; struct itimerspec value; …quot;msgQSend in taskOne failed\n"); } void taskThrees(void) { char msgBuf[MAX_MESSAGE_LENGTH]; // receive message… Animation issues with 2D game. Please help! Programming Software Development by tyler.dahle … 800, 800); while(1 == 1){ moveCharacter(); //moveMonster(); } } void moveCharacter(){ int move = 0; int size = imagesize(0, 0, 800…+50); putimage(0, 0, background, COPY_PUT); } }//end function void thunderClaw(){ int mx = mousex(); int my = mousey(); int size… Question about my FUNC Programming Software Development by markfisher void x_bzero(s, n) void *s; unsigned int n; { long long *ptr = (long long *) s; … buffer. I don't want to use char instead of void on my function because I want it to be type… to do it or there is better way? 3. Since void is 1bytes and I have 21 of them, when I… What am I doing wrong here? Programming Software Development by Vusumuzi void FUNCTIONS WITH DIFFERENT TYPES AND NUMBERS OF PARAMETERS Ms…5c only. Question 5a: Three reference parameters Write a void function inputAndValidate where the results of one student are …namespace std; // The required function inputAndValidate should be inserted here. void inputAndValidate (char Sex, int YearMark, int ExamMark){ char sex;… trying to get text from file in function with malloc Programming Software Development by boomtoom … number; totalCallsPtr pcall=NULL; getData(&pcall,&number); } void getData(totalCallsPtr* pcall,int* number)//get data from the text … what exactly is the second argument of realloc()??? Programming Software Development by shakisparki void * realloc(void*ptr , size_t size) is the second argument supposed to be the number of bytes to be allocated, e.g 5 * sizeof(int) or just the number of elements needed e.g 5 or 10