|
Think you for your help. I removed the comments and used
. I hope it's easier to read.
yes, you're right, I want to add a loop but I don't where in my code.
Think you
|
|
|
|
|
Okay thanks for the formatting!
Let my try to help.... put the loop around the blocking part (pseudocode):
socket();
bind();
for(;;)
{
recvfrom();
if(ok) ExecuteCommand();
}
closesocket();
Right now the worker thread has no exit condition, you probably want to add one in order to avoid terminating the thread the hard way at application exit. Also have a look at some other issues, e.g. starting from this line
nb_caracters=recvfrom(socket_recevoir,buffer,1515,0,(struct sockaddr*)&information_recevoir,&tempo);
should become something like
int nb_caracters = recvfrom(socket_recevoir, buffer, sizeof(buffer)-1, 0, (struct sockaddr*)&information_recevoir, &tempo);
if(nb_caracters > 0)
{
buffer[nb_caracters] = 0;
ExecuteCommand(buffer, NULL, 0);
}
Webchat in Europe Now with 26% more Twitter
modified on Monday, April 5, 2010 3:34 PM
|
|
|
|
|
is it possible to give different colors for each row in Listview..
ie blue for the contents in first row
red for 2nd
and so on
thanks in advance.
|
|
|
|
|
As far as i know you can only do that by using an owner-drawn list control and drawing the rows yourself or you can use some pre-made "extended" list control, like CListCtrlEx[^].
> The problem with computers is that they do what you tell them to do and not what you want them to do. <
> Sometimes you just have to hate coding to do it well. <
|
|
|
|
|
|
I all
I got one example from planetsourcecode.When i compile these code then i am geeting error please help me.
#include "stdafx.h"
#include<stdlib.h>
#include<stdio.h>
#include<conio.h>
#include<string.h>
int _tmain(int argc, _TCHAR* argv[])
{
char *s;
int i,l,*a,f,c,x;
printf("Enter a string : ");
scanf("%s",s);
l=strlen(s);
s[l]=0;
a=(char*)malloc(l);
for(i=0;i<l[i++]=0);
f=1,c=0;
while(f)
{
x=l-1;
a[x]=c++;
for(i=0;i<l&& c-1<l;i++)
printf("%c",s[a[x]]);
if(i>=l)
printf("\n");
while(a[x]>=l)
{
a[x]=c=0;
if(x<0){f=0;break;}
a[x]++;
}
}
printf("Completed");
return 0;
}
Error
error C2440: '=' : cannot convert from 'char *' to 'int *'
error C2109: subscript requires array or pointer type
error C2143: syntax error : missing ';' before ')'
Please help me
|
|
|
|
|
You can seee the error...
Now decide why?
int i,l,*a,f,c,x;
printf("Enter a string : ");
scanf("%s",s);
l=strlen(s);
s[l]=0;
<big>a=(char*)malloc(l);</big>
Величие не Бога может быть недооценена.
|
|
|
|
|
yes i know there is error.When i change Int *a to CHAR *a.But still i have two error.
Error
error C2109: subscript requires array or pointer type
error C2143: syntax error : missing ';' before ')'
If you know solution or condition then please help me
|
|
|
|
|
I cannot get the this code?
Surely having problem, but whether it is related to your code or formating error, please check these things, you can solve these issues.
These are just syntax errors.
for(i=0;i f=1,c=0;
Величие не Бога может быть недооценена.
|
|
|
|
|
Thanks for reply
I have change in code then runing well.Please check it.
#include "stdafx.h"
#include<stdlib.h>
#include<stdio.h>
#include<conio.h>
#include<string.h>
int _tmain(int argc, _TCHAR* argv[])
{
char *s,*a;
int i,l,f,c,x;
printf("Enter a string : ");
scanf("%s",s);
l=strlen(s);
s[l]=0;
a=(char*)malloc(l);
for(i=0;i<l;i++);
f=1,c=0;
while(f)
{
x=l-1;
a[x]=c++;
for(i=0;i<l && c-1<l;i++)
printf("%c",s[a[x]]);
if(i>=l)
printf("\n");
while(a[x]>=l)
{
a[x]=c=0;
if(x<0){f=0;break;}
a[x]++;
}
}
printf("Completed");
return 0;
}
Error
Run-Time Check Failure #3 - The variable 's' is being used without being initialized.
Please help me
|
|
|
|
|
Here, i think you have to help yourself, by learning the syntax of C.
I prefer you to read a C programming book to get throught with syntax.
See in your code, you cannot use scanf as you wish, it is expecting the address of s. so your compiler is complaining
scanf("%s",s);
Expected code is
scanf("%s",&s);
Величие не Бога может быть недооценена.
|
|
|
|
|
Thanks for reply
Now i am getting exception in line s[l]=0;
Unhandled exception at 0x1026f8bc (msvcr90d.dll) in TestingProject.exe: 0xC0000005: Access violation reading location 0xcc006975.
|
|
|
|
|
try this
char *s = new char;
Failure is Success If we learn from it!!
|
|
|
|
|
I have change in code char *s = new char(230)
Still i have same exception.
Please help me
|
|
|
|
|
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
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.
|
|
|
|
|
Thanks for vital information and suggestion.
I want to generate Combination of given String.Like this CString test="ABC", then generate like this
AB
AC
AA
BB
BC
BA
CC
CA
CB
If you have any type solution or suggestion then please help me.
|
|
|
|
|
Ok, that's the problem. Now try to come to an algorithmic solution.
That doesn't need to be C or C++, just pseudocode.
Only when you find your algorithm looks meaningful, try to code it!
Than: the problem is not well formed. Do you want only two char-s combination? Does the input string needs to be 3 char-s wide or can it be whatever?
Be sure about that: you risk to produce a code that works on a very specific case, while looking for something more generic.
2 bugs found.
> recompile ...
65534 bugs found.
|
|
|
|
|
yes you right.You have any idea about such type of algo because i havn't found algo.Please help me
|
|
|
|
|
no, I cannot do your homework.
2 bugs found.
> recompile ...
65534 bugs found.
|
|
|
|
|
you don't do my home work just i want to know url link or forum name.i know why you do my home work.
thank
|
|
|
|
|
You can use casting, I know it's available in C++.
Don't know about C, does it have to be C or C++?
|
|
|
|
|
thank for make comment but sorry can you describe in detail.What's not available? please describe in detail.
|
|
|
|
|
i'm not sure if you've attempted to add float to an int data type, but you get compiler errors in the end.
you want to add float and int to each other.
Casting:
int x = 12;
float y = 4.0;
int sum = x + (int)y;
|
|
|
|
|
Thank for reply but it's not useful for me because where i use int + float.If you have solution then please help me.
|
|
|
|
|
Hi all,
i want to generate max. combination for any given value.
like for AB::
combinations are "AB";"BA";"AA";"BB"
i m using Permutation but it gives only 2 combination here.
so please help me for this.
thanks in advance.
|
|
|
|