Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 589 results for
funtions
- Page 1
help on funtions
Programming
Software Development
15 Years Ago
by IT seeker
i need help on
funtions
throughout, i want to take lecture on
funtions
. theory then practicle....... so plzz help me
fUNTIONS
Programming
Software Development
20 Years Ago
by MAPONYA
Write a C++ program ,that uses modularisation. The program allows the end user to enter a test mark which is converted into persantage by a particular funtion, the test mark is returned to main(), another funtion is called which detemines whether the student passed or failed if ist a pass increment number of students who passed do like wise for …
Re: fUNTIONS
Programming
Software Development
20 Years Ago
by MAPONYA
#include <iostream> using namespce std; void ReadInput(); //this funtion allows the user to enter the test mark. { duoble marks; //student mark mark *=0.5 //mark converted to persantage if the test is out of 50. cout<<"ENTER STUDENT MARK"<<endl; cin>>mark; return …
Re: fUNTIONS
Programming
Software Development
20 Years Ago
by Lerroy
Hi Maponya, this is Lerroy and I would like to have your permission to see if this program can run because I'm also suffering from its difficult situation.HELP PLZ...
Re: fUNTIONS
Programming
Software Development
20 Years Ago
by meabed
k .. continue what u r doing ?? what is the other fucktion that u want .. and write it .. i dont see any something hard in this code .. if u have say where r u stuck ??
Re: fUNTIONS
Programming
Software Development
20 Years Ago
by meabed
look at this program ... and try to develop it to satisfy ur needs
Re: fUNTIONS
Programming
Software Development
20 Years Ago
by Lerroy
I'm Lerroy and this is how I've approached Maponya's Challenging problem. [code=cplusplus] #include<iostream> #include<iomanip> using namespace std; //program uses std; double readInput(); //function prototype void calculatetotals(double,double &,int &,double &,int &); //function prototype void …
Re: fUNTIONS
Programming
Software Development
17 Years Ago
by real_napster
well i think that this is correct but what i have face it that the program shut down automaticaly without seeing the result [code=cplusplus] #include<iostream> #include<iomanip> using namespace std; //program uses std; double readInput(); //function prototype void calculatetotals(double,double &,int &,double &…
funtions?. and a fatal error in my code?
Programming
Software Development
14 Years Ago
by gl7
hey, kind of new to c++ started working with functions and am trying to write program using them trying to make hangman game using functions, with my following code i am getting this error message [linked error] undefined reference to 'askGuess()' id returned 1 exit status [build error] [ number5.exe] error 1 could please tell me what this error …
Re: funtions?. and a fatal error in my code?
Programming
Software Development
14 Years Ago
by arkoenig
On line 10 you say that you have a function named askGuess that takes no arguments and returns a char. On line 55 you define a function named askGuess that takes a string argument and returns a char. Because these functions have different argument types, the compiler assumes that they are different functions. On line 38, you call askGuess …
Re: funtions?. and a fatal error in my code?
Programming
Software Development
14 Years Ago
by gl7
alrite so my code is and my connection/ using of functions is all messed up. i think i get it thanks alot arkoenig i just never got that error message, and didnt now to to start to fixing it but now know where to start, again thanks
Funtions headache
Programming
Web Development
13 Years Ago
by furlanut
I have been able to write functions but cannot get them to work. Many sites show you how to write them but not how to call them in your web programming. Can someone explain why this call does not work for me ? the function is: [CODE] <? php function fix_name($name) { $name= ucwords(strtolower($name)); return $name; } ?> [/CODE]…
Re: Funtions headache
Programming
Web Development
13 Years Ago
by broj1
The third block of code is OK, that is how you do it. Of course you can also have functions in a separate file like in your second block example in the fix_name.php file. Only the line 4 of the second block should be: [CODE]echo fix_name("costa playa");[/CODE]
Re: Funtions headache
Programming
Web Development
13 Years Ago
by diafol
As broj1 states include files can be created to hold functions - this is in fact an useful way of organising your code, but including a file is very different from calling a function directly. [CODE]<?php require_once "fix_name.php"; echo fix_name("costa playa"); ?>[/CODE] should work fine if the include file …
Re: Funtions headache
Programming
Web Development
13 Years Ago
by Stefano Mtangoo
also [I]"it does not work"[/I] is not better way to explain problem. Say what and how exactly it does not work!
Re: Funtions headache
Programming
Web Development
13 Years Ago
by furlanut
Having corrected the call to 'echo fix_name("costa playa") I get the error ! ) Fatal error: Call to undefined function fix_name() in C:\wamp\www\WSRU\costa playa.php on line 15 When I change the function to contain 'ucfirst' instead of 'ucwords' the call is correctly displayed and the 3rd code is always OK. Perhaps it is something in …
funtions of file
Programming
Software Development
10 Years Ago
by sunnyshahrukh
how can we use tellg(),tellp(),seekg(),seekp(), sizeof(), functions in c++ files please details required with complete code
Re: help on funtions
Programming
Software Development
15 Years Ago
by mrnutty
Go to youtube and learn about functions from professors. Youtube has many good programming videos. try it out.
Winsock Multi-Client Servers
Programming
Software Development
20 Years Ago
by FireNet
…SERVER.cpp****************/ [/CODE] Notes ------ 1.htons() This
funtions
is used make port numbers correct according the hardware.…,just add more commands and polish and some status display
funtions
) [CODE] -------------------------------- Protocols (Basic overview) -------------------------------- [/CODE] …
fstream Tutorial
Programming
Software Development
21 Years Ago
by FireNet
… I will give you a bit of work, make the
funtions
getdata() and dispdata() It's easy and not worth for… of the file has been reached All are member
funtions
and are used as file_handle.errror_funtion() Eg. char ch…;<ch; } You should have understood what those
funtions
are for. Implement them when you do you file …
Re: fstream Tutorial
Programming
Software Development
20 Years Ago
by rghai6
…(); }; /* I will give you a bit of work, make the
funtions
getdata() and dispdata() It's easy and not worth for…
Flexie Programming Assignment
Programming
Software Development
16 Years Ago
by flexy82rpq
… namespace std; //searching class definition class Searching { public: //member
funtions
void insertionSort(int *list, int last); void hashSearching(int *list…; system("pause"); return 0; }//end of main
funtions
//function header; this funtion accept option for the type of…
Moving a funtion to a new header inside the same class
Programming
Software Development
15 Years Ago
by joshjgordon
… name and then a load of errors for the set
funtions
eg.: 1>h:\treecode\treecode\initial_line.h(18) : error… particle, and I assume all the errors involving the set
funtions
will go away onve it is properly linked with the…
pf_script_with_get($SCRIPT_NAME)
Programming
Web Development
13 Years Ago
by Krishna_Php
… pf_script_with_get($SCRIPT_NAME).....For using this function i made a file
funtions
.php and included in each file where this function is… used. the code of
funtions
.php is <?php function pf_script_with_get($script) { $page = $script; $page…
Determine if a number is an Armstrong number
Programming
Software Development
13 Years Ago
by chezkaty
… returns a value when x is raised to y. B.
funtions
that determines the number of digits in an n-digit… number. use these
funtions
to determine if a number is an armstrong number. thankyou…
User defined functions
Programming
Software Development
20 Years Ago
by MAPONYA
I'm a beginner as far as c++ is concernt.I want help using user defind
funtions
Blue text in windows explorer
Hardware and Software
Microsoft Windows
20 Years Ago
by ssilverberg
I updated XP with service pack 2. No apparent problems except in Windows Explorer under the windows header there are now a number of files in blue. Most are text files with 0kb but some are descriptors of the install process, most with the $ prefix. Can these tbe deleted or are they necessary for the process
funtions
?? Thanks!!! SS
Possible to create a Winamp media library smart view for genres?
Hardware and Software
Microsoft Windows
20 Years Ago
by Cup of Squirrel
I have recently discovered the rather nice Winamp media library
funtions
, and was wondering if it was possible to create a smart view so everything is sorted by genre/is put into genre catagories. Failing that is there just an option I can set?
Please Help
Programming
Software Development
19 Years Ago
by qwester
I am having difficulting creating a Kayles game for java using eclipse. I have all the needed
funtions
, except for the computer movements, which is what I am having difficulty with. Any help would be appreciated, I have attached the file to this post.
Matrix
Programming
Software Development
19 Years Ago
by gampalu
… building a Class for matrixes. I have already built several
funtions
for adding, subtracting, transpose, multiply,.. Now I'm trying to…
1
2
3
10
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC