Page 1 of 2

Price for helping to do c programming project

Posted: Mon, 18 Mar 2013 2:52 pm
by coolzs
May i know how much will u all charge for 1 mini c programming using codeblock. Urgent, singapore.

Posted: Mon, 18 Mar 2013 3:22 pm
by Sergei82
Wouldn't India be more appropriate place to ask that?

Or you want us to tell you our salaries?

Posted: Mon, 18 Mar 2013 4:12 pm
by coolzs
haha, i mean i need a programmer in singapore.

Posted: Mon, 18 Mar 2013 5:08 pm
by Sergei82
Strange requirement and strange place to ask. If you need some piece of code done for you, go to any programmers' freelance website and get it done cheap.

Posted: Mon, 18 Mar 2013 5:20 pm
by rajagainstthemachine
void main ()
{
cout<<"\n cool story bro ";
}

Posted: Mon, 18 Mar 2013 5:53 pm
by Sergei82
rajagainstthemachine wrote:void main ()
{
cout<<"\n cool story bro ";
}
cout??? That is C++, not C. This piece of code is wrong and worthless. :wink:

Posted: Mon, 18 Mar 2013 6:31 pm
by x9200
printf( "\nIt is not worthless. I can debug the above for $S100 per line.\n" );

Posted: Mon, 18 Mar 2013 7:25 pm
by rajagainstthemachine
Sergei82 wrote:
rajagainstthemachine wrote:void main ()
{
cout<<"\n cool story bro ";
}
cout??? That is C++, not C. This piece of code is wrong and worthless. :wink:

every programmer knows c++ > c :wink:

Posted: Mon, 18 Mar 2013 7:31 pm
by nakatago
rajagainstthemachine wrote:
Sergei82 wrote:
rajagainstthemachine wrote:void main ()
{
cout<<"\n cool story bro ";
}
cout??? That is C++, not C. This piece of code is wrong and worthless. :wink:

every programmer knows c++ > c :wink:
c++ takes up too much space.

Posted: Mon, 18 Mar 2013 7:34 pm
by rajagainstthemachine
nakatago wrote:
rajagainstthemachine wrote:
Sergei82 wrote: cout??? That is C++, not C. This piece of code is wrong and worthless. :wink:

every programmer knows c++ > c :wink:
c++ takes up too much space.
memory isn't a constraint as it once was anymore.

Posted: Mon, 18 Mar 2013 8:36 pm
by ulu ulu
With C, you can hang yourself; C++ gives you a rope "object" to do that.



I read this online long time back. Still remember this :D

Posted: Mon, 18 Mar 2013 8:40 pm
by nakatago
rajagainstthemachine wrote:
nakatago wrote:
rajagainstthemachine wrote:
every programmer knows c++ > c :wink:
c++ takes up too much space.
memory isn't a constraint as it once was anymore.
then you've never handled embedded systems.

Posted: Mon, 18 Mar 2013 8:54 pm
by nakatago
Offers to do OP's 'work' are not allowed as they are considered advertisement.

Any more such posts can end up in a ban for the poster.

-Moderator

Posted: Mon, 18 Mar 2013 9:19 pm
by rajagainstthemachine
nakatago wrote:
rajagainstthemachine wrote:
nakatago wrote: c++ takes up too much space.
memory isn't a constraint as it once was anymore.
then you've never handled embedded systems.
i have worked with embedded systems believe me, but I've used Micro-controller assembly code not C or C++
man this is years ago in engineering school.

Posted: Mon, 18 Mar 2013 10:20 pm
by Sergei82
x9200 wrote:printf( "\nIt is not worthless. I can debug the above for $S100 per line.\n" );
x9200, your code is sloppy, therefore I will not pay you $S100 per line for any debugging. You should at least show to maintainers that you're ignoring printf return value by casting it to (void):

(void)printf(…);

Otherwise if printf fails, you may waste somebody's time finding out the reason. ;)