Click here to Skip to main content
15,921,606 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: How to read and write to a BINARY file? Pin
Member 419459329-Oct-09 13:05
Member 419459329-Oct-09 13:05 
AnswerRe: How to read and write to a BINARY file? Pin
enhzflep29-Oct-09 13:06
enhzflep29-Oct-09 13:06 
GeneralRe: How to read and write to a BINARY file? Pin
dipuks29-Oct-09 15:27
dipuks29-Oct-09 15:27 
GeneralRe: How to read and write to a BINARY file? Pin
enhzflep29-Oct-09 15:53
enhzflep29-Oct-09 15:53 
AnswerRe: How to read and write to a BINARY file? Pin
David Crow29-Oct-09 17:01
David Crow29-Oct-09 17:01 
AnswerRe: How to read and write to a BINARY file? Pin
Adam Roderick J29-Oct-09 17:58
Adam Roderick J29-Oct-09 17:58 
QuestionA General Problem Pin
WindowsVsLinux29-Oct-09 8:49
WindowsVsLinux29-Oct-09 8:49 
AnswerRe: A General Problem Pin
«_Superman_»29-Oct-09 9:04
professional«_Superman_»29-Oct-09 9:04 
GeneralRe: A General Problem Pin
WindowsVsLinux29-Oct-09 18:03
WindowsVsLinux29-Oct-09 18:03 
QuestionRe: A General Problem Pin
David Crow29-Oct-09 9:30
David Crow29-Oct-09 9:30 
AnswerRe: A General Problem Pin
WindowsVsLinux29-Oct-09 18:05
WindowsVsLinux29-Oct-09 18:05 
AnswerRe: A General Problem Pin
enhzflep29-Oct-09 9:36
enhzflep29-Oct-09 9:36 
GeneralRe: A General Problem Pin
WindowsVsLinux29-Oct-09 18:08
WindowsVsLinux29-Oct-09 18:08 
GeneralRe: A General Problem Pin
Adam Roderick J29-Oct-09 18:21
Adam Roderick J29-Oct-09 18:21 
Questionpointer and switch Pin
kbury29-Oct-09 8:18
kbury29-Oct-09 8:18 
AnswerRe: pointer and switch Pin
«_Superman_»29-Oct-09 8:21
professional«_Superman_»29-Oct-09 8:21 
GeneralRe: pointer and switch Pin
kbury29-Oct-09 8:24
kbury29-Oct-09 8:24 
AnswerRe: pointer and switch Pin
CPallini29-Oct-09 10:58
mveCPallini29-Oct-09 10:58 
GeneralRe: pointer and switch Pin
kbury30-Oct-09 2:31
kbury30-Oct-09 2:31 
GeneralRe: pointer and switch Pin
CPallini30-Oct-09 2:52
mveCPallini30-Oct-09 2:52 
GeneralRe: pointer and switch Pin
kbury30-Oct-09 9:37
kbury30-Oct-09 9:37 
GeneralRe: pointer and switch Pin
CPallini30-Oct-09 10:43
mveCPallini30-Oct-09 10:43 
GeneralRe: pointer and switch Pin
kbury30-Oct-09 10:57
kbury30-Oct-09 10:57 
change to

printf("\nWhat is %d", *r1); (I already changed this)I figured that out.



kbury wrote:
r1 = 2 + rand() % 11;

change to

*r1 = 2 + rand() % 11; (This defineately fixed this.

The above steps, however just fix compiler errors...I don't know if the semantic will be correct.


switch (c)

	{     (states that this is illegal type pointer to int in       switch expression.)

		case '1':
		  	printf("+");
		   	CorAns = r1 + r2;  (operands of + have illegal of 'pointer to int' and 'pointer to int')

		  break;

GeneralRe: pointer and switch Pin
CPallini30-Oct-09 11:00
mveCPallini30-Oct-09 11:00 
GeneralRe: pointer and switch Pin
kbury30-Oct-09 11:05
kbury30-Oct-09 11:05 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.