hello friends, i need a sample programme to convert numbers in words in 'C' for example: 225 two hundred and twenty five. thanking you, Bollywood, fun,...
... int v, *f; f = &v; // or f = (int*)v; // depending on whether you want the address or the value of v. -- PJH 'Two Dead in Baghdad' not 'product-friendly' -...
... What for? How far have you got with it yourself? -- PJH 'Two Dead in Baghdad' not 'product-friendly' - Kent Ertugrul, chief executive of Phorm. ...
Hi, Here i have attached the program which accepts 999 to 1 and outputs as words. what here i developed 1. accepts the input 2. reverse the number 3.find the...
Most of us charge by the hour to program, and I double my fees if it's homework. If you make an attempt to do the program, we can help, but I have no idea what...
Thank you Paul. My compiler still disregards the cast from int to pointer. Never mind... i found a solution to access memory from C. I use the fact that C does...
... For these, you'd be better off using bit masks, the & bit operator (and possibly the shift operator) -- PJH 'Two Dead in Baghdad' not 'product-friendly' -...
Gotta question. Once you 'release' a visual studio express 2008 project, what files do you have to move with the .exe to get the program to run if you move it...
... If this is a managed C++ project it compiles to .NET, and if the target computer does not have a compatible .NET layer (e.g. you compiled against 2.0,...
... There's a wide variety of opinions. My personal recommendation is VC++ because, as a beginning programmer, you will want the superior debugger. Dev-C++,...
... Sounds like a DLL dependency issue. Try installing the Visual C++ 2008 Redistributable on the target machine. Also get your hands on Dependency Walker...
Hi C gurus, I have some questions about the address of an array, Please look at the following simple code: =================================================== ...
LiGang
luzifer.li@...
Jul 2, 2008 6:38 am
67203
Thank you my friend for your kind replay with regards ... From: Vishnu Kumar <svmvishnu@...> Subject: Re: [c-prog] need a sample programme To:...
Hi John, The machine I moved to is actually newer than the one I built the project on; Target computer is running: XP Professional version: 5.1.2600 Service...
Hello, I need help... I want to make a program that sending signals for parallel port produces sounds. I did this... but all the times my program stuck in an...
Hi, The following build-in function (acceptNumber, acceptAlpha) are used to get the input from the user. The special in that function is it only accepts...
... If you change the code to following, and run it through Gimpel's PC-Lint, it gives you a clue: int main(void) { int inter[3] = {1, 2, 3}; int **pp =...
hi i need this simple programe plz send me if you are a good programer thanks.shan_man130@... Programe:Write a C++ program that contains a class named...
... Is there any particular reason you can't be bothered doing your own homework, and then asking us specific questions about the parts on which you're stuck. ...
Yes Surely, You have to do your homework by your own. ... -- Akter Yakub Suriya Senior Software Analyst Hyderabad. (09440711663) [Non-text portions of this...
try it by user self. its very easy to implement. if you have doubt to continue further please ask. ~vishnu~ ... From: asd dfds <shan_man130@...> To:...
Hi Friends, I need to understand a very simple doubt: Function pointer has some overhead associated with it. Still WHY SHOULD we use function pointer instead...
... There is no difference between a 'function' and a 'function pointer' except the syntax. The function has parentheses after it: int foo(void){ return 1; } ...
which use case / where u have the problem. ~vishnu~ ... From: R.NĂcolasR.S. <rnicolasrs@...> To: c-prog@yahoogroups.com; c4swimmers@yahoogroups.com ...
Hi all, This is a review of my topic: "memory access". Given: long int r[100],m,n,o,v; // array and workvariables char b[4];short int w[1];long int l[1]; //...
... Thank you Paul. I presume your hint has to do with the division. A shift is more code efficient than a division. But my compiler generates a shift...