Click here to Skip to main content
15,884,298 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: error C2440 Pin
MsmVc4-Apr-10 21:55
MsmVc4-Apr-10 21:55 
GeneralRe: error C2440 Pin
Adam Roderick J4-Apr-10 22:00
Adam Roderick J4-Apr-10 22:00 
GeneralRe: error C2440 Pin
MsmVc4-Apr-10 22:06
MsmVc4-Apr-10 22:06 
GeneralRe: error C2440 Pin
Adam Roderick J4-Apr-10 22:21
Adam Roderick J4-Apr-10 22:21 
GeneralRe: error C2440 Pin
MsmVc4-Apr-10 22:31
MsmVc4-Apr-10 22:31 
GeneralRe: error C2440 Pin
Game-point4-Apr-10 22:45
Game-point4-Apr-10 22:45 
GeneralRe: error C2440 Pin
MsmVc4-Apr-10 23:11
MsmVc4-Apr-10 23:11 
GeneralRe: error C2440 Pin
Emilio Garavaglia5-Apr-10 21:04
Emilio Garavaglia5-Apr-10 21:04 
no, no, no .... That's not the way to go!
You put some code with some syntax error and even some misconception in it.
That reveal that you are not understanding what your code has to do.

The compiler just gives some errors, but those errors are random as your code is. Attempting to fix those errors doesn't lead anywhere: you're never granted your code will do what you expect.

For example:
char *s;
int i,l,*a,f,c,x;
printf("Enter a string : ");
scanf("%s",s);


s is a pointer pointing to nowhere: where do ypu thoing your scanf can write to ?!?
s[l]=0; tries to write to nowhere since s is nowhere
a is a pointer to int, but you do a=(char*)malloc(l): what did you want to do? allocating char-s or int-s ?!
for(i=0;i
 f=1,c=0;
 while(f)

This is a mess of tokens with no syntax meaning! Raed about the for syntax, and understand the proper use of '()', ',', and ';'.


x=l-1 Wow... you're looking for problems: never use names like "O" and "l": I have to change font before find it's "l-1" and not "l-l" ... Do you get what I mean? If not, than that demonstrate the problem Smile | :)

Then: I see a malloc, but i don't see a free: not a good way to program...

I don't continue, but what can you do if you don't have clear in your mind what you're gonna do?

2 bugs found.
> recompile ...
65534 bugs found.
D'Oh! | :doh:


GeneralRe: error C2440 Pin
MsmVc5-Apr-10 21:12
MsmVc5-Apr-10 21:12 
GeneralRe: error C2440 Pin
Emilio Garavaglia5-Apr-10 21:46
Emilio Garavaglia5-Apr-10 21:46 
GeneralRe: error C2440 Pin
MsmVc5-Apr-10 22:00
MsmVc5-Apr-10 22:00 
GeneralRe: error C2440 Pin
Emilio Garavaglia5-Apr-10 22:10
Emilio Garavaglia5-Apr-10 22:10 
GeneralRe: error C2440 Pin
MsmVc5-Apr-10 22:13
MsmVc5-Apr-10 22:13 
AnswerRe: error C2440 Pin
Fareed Rizkalla4-Apr-10 23:12
Fareed Rizkalla4-Apr-10 23:12 
GeneralRe: error C2440 Pin
MsmVc4-Apr-10 23:28
MsmVc4-Apr-10 23:28 
GeneralRe: error C2440 Pin
Fareed Rizkalla5-Apr-10 4:14
Fareed Rizkalla5-Apr-10 4:14 
GeneralRe: error C2440 Pin
MsmVc5-Apr-10 19:13
MsmVc5-Apr-10 19:13 
QuestionHow can generate Max. Combination of given Value? Pin
Le@rner4-Apr-10 19:58
Le@rner4-Apr-10 19:58 
AnswerRe: How can generate Max. Combination of given Value? Pin
Adam Roderick J4-Apr-10 20:02
Adam Roderick J4-Apr-10 20:02 
GeneralRe: How can generate Max. Combination of given Value? Pin
Le@rner4-Apr-10 20:19
Le@rner4-Apr-10 20:19 
GeneralRe: How can generate Max. Combination of given Value? Pin
Adam Roderick J4-Apr-10 21:01
Adam Roderick J4-Apr-10 21:01 
GeneralRe: How can generate Max. Combination of given Value? Pin
Le@rner4-Apr-10 21:24
Le@rner4-Apr-10 21:24 
GeneralRe: How can generate Max. Combination of given Value? Pin
Adam Roderick J4-Apr-10 21:35
Adam Roderick J4-Apr-10 21:35 
GeneralRe: How can generate Max. Combination of given Value? Pin
Le@rner4-Apr-10 21:39
Le@rner4-Apr-10 21:39 
GeneralRe: How can generate Max. Combination of given Value? Pin
CPallini5-Apr-10 0:11
mveCPallini5-Apr-10 0:11 

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.