351 Posted Topics

Member Avatar for helifreak
Member Avatar for kymarscheng
Member Avatar for kskumar121
Member Avatar for Byron Warren
Member Avatar for niozect
Member Avatar for anand.cgg

Hi Anand, welcome to Daniweb! Feel free to contribute in the Java section.

Member Avatar for Denniz
0
51
Member Avatar for RobertSnaws
Member Avatar for vmars
Member Avatar for richardmatthews
Member Avatar for ooisootuck
Member Avatar for Sable899

Hi welcome to Daniweb! You can post whatever queries you have at the php section.

Member Avatar for Denniz
0
58
Member Avatar for matrix girl
Member Avatar for liquoriser21
Member Avatar for Alex Edwards

Why not? My credit card is always inside my wallet. Is there any reasons not to carry it around?

Member Avatar for Alex Edwards
0
158
Member Avatar for veeramanister
Member Avatar for eightiesbaby80
Member Avatar for kenji

How about work full-time for a year or two before going for masters? The working experiences might change your perspective and help you make a better decision.

Member Avatar for Denniz
0
69
Member Avatar for aashish.raina
Member Avatar for safyrmwn
Member Avatar for ccube921
Member Avatar for Denniz
0
113
Member Avatar for Stefano Mtangoo

I know it isn't free, but does Visio suits your purpose? Or even MS Word can be used to draw blocks and arrows, if that is what you want.

Member Avatar for Stefano Mtangoo
0
90
Member Avatar for apennyforyourth
Member Avatar for J-son

I don't know about others but to me putting function declarations inside main is just like a potential time-bomb, even if at this moment your functions do not call each other.

Member Avatar for Denniz
0
11K
Member Avatar for Tayprogramming
Member Avatar for Denniz
0
110
Member Avatar for asande

Hi welcome to Daniweb! You can post your problem under Tech Talk, just select the subsection according to your relevant operating system.

Member Avatar for Denniz
0
34
Member Avatar for fwawira

Hi faith, welcome to Daniweb! Look around and maybe post for suggestion at the Computer Science section.

Member Avatar for Denniz
0
22
Member Avatar for CathShadow
Member Avatar for infotechland

Hi Randy, welcome to the forum! Perhaps you should learn one language at a time so as not to confuse yourself over the syntax.

Member Avatar for infotechland
0
173
Member Avatar for Shanebear

Line 19: Replace << with semicolon ; Line 22: "If" should not be capitalized too

Member Avatar for Evan M
0
115
Member Avatar for Jahira

Go google "print hello world without semicolon". But its non Ansi C standard because it requires void main(). I am curious why you need to do these silly questions. If this is your assignment, help me ask your tutor.

Member Avatar for Salem
0
277
Member Avatar for Jahira

[CODE] int i = 1; STUPID_ASSIGNMENT: printf("%d\n", i); if(i < 100) { i++; goto STUPID_ASSIGNMENT; } [/CODE] Is this the kind of assignment teachers like to give nowadays?

Member Avatar for Denniz
0
301
Member Avatar for morais

I suppose you are using Visual C++. From the little info that you give, you seem to be calling the function AfxMessageBox, but passing parameter that does not match its declaration. We need to see the codes where you call this function, and the full error message (your error message …

Member Avatar for Ancient Dragon
0
282
Member Avatar for cindyjuno
Member Avatar for Denniz
0
20
Member Avatar for jeff360
Member Avatar for sgtd
Member Avatar for Omar Saleh

Hi welcome to Daniweb! VB is rather simple, I used to debug VB codes even though I don't know the syntax.

Member Avatar for Denniz
0
36
Member Avatar for purpleboo88

Hi welcome to the forum! Please post your questions under Tech Talk->Microsoft Windows or the relevant sub sections under it.

Member Avatar for The Dude
0
106
Member Avatar for han.pronker
Member Avatar for dtaylor01

Take away all those semi-colons after the if and else-if statement: [CODE] if (score >= 85); grade = 'A'; else if (score >= 75); grade = 'B'; else if (score >= 65); grade = 'C'; else if (score >= 55); grade = 'D'; else grade = 'F'; [/CODE]

Member Avatar for chococrack
0
248
Member Avatar for asifjavaid

These two files are the compiler and linker. You probably have to restart your visual studio, or even reboot your pc, and try it again. You can try to create a simple hello world application and compile, to see if this problem persist. If it persists, then the problem probably …

Member Avatar for Denniz
0
227
Member Avatar for av11453
Member Avatar for Doctor Inferno
0
54
Member Avatar for rbahumaan
Member Avatar for prasaddotnet
Member Avatar for dumparun
Member Avatar for Doctor Inferno
0
58
Member Avatar for grisha83
Member Avatar for Se7Olutionyg

You don't need an extra function. Just add one more case option inside the function do_next_op.

Member Avatar for Denniz
0
81
Member Avatar for avinash.more72

Read the recruitment sections of the newspaper. Or register to some job seeking site. I don't think this is the right place to look for job.

Member Avatar for Denniz
0
19
Member Avatar for Se7Olutionyg

Do you know the difference between declaring a function and calling a function? To declare a function, you do this: [CODE] void instruction(); void divide_by_zero (char, float); float do_next_op (char, float, float); [/CODE] To call a function, you do this: [CODE] instruction(); divide_by_zero (op, num); accum = do_next_op (input, num, …

Member Avatar for Denniz
0
182
Member Avatar for homero88

You should choose Win32 Dynamic Linked Library instead of MFC AppWizard (DLL). After choosing that, select "A simple DLL project". Overwrite the original DllMain function that VC++ provides with this DllMain function that you have at the end of your codes: [CODE] bool APIENTRY DllMain(HMODULE hModule, DWORD dwReason, LPVOID lpvReserved) …

Member Avatar for homero88
0
139
Member Avatar for cproud21

There are a number of ways to get out of the loop. One way is to put the break statement when someone wins the game: [CODE] if (left < 1) { cout << " Player 1, You have one the game!" << endl; break; } [/CODE] Else, you can set …

Member Avatar for cproud21
-1
113

The End.