Search Results

Showing results 1 to 32 of 32
Search took 0.01 seconds.
Search: Posts Made By: DangerDev ; Forum: C and child forums
Forum: C Aug 11th, 2009
Replies: 7
Solved: Have a look...
Views: 238
Posted By DangerDev
Its ok hket89, our point is use the english whatever you know, don't make it like SMS language, even if you are not understandable it is OK, but don't use SMS like language.
Now, if you dont have...
Forum: C Aug 10th, 2009
Replies: 21
Views: 940
Posted By DangerDev
Please use proper English, didn't you read above posts by yellowSnow?
Forum: C Aug 10th, 2009
Replies: 7
Solved: Have a look...
Views: 238
Posted By DangerDev
Please post your question.
Please use English which every one can understand.
What is vf?
Forum: C Aug 7th, 2009
Replies: 21
Views: 940
Posted By DangerDev
I think you should start with a basic C book. You can not learn each and every language construct by communities.
Forum: C Aug 7th, 2009
Replies: 7
Views: 382
Posted By DangerDev
Forum: C Aug 7th, 2009
Replies: 12
Solved: GOTO command
Views: 750
Posted By DangerDev
Try to avoid GOTO. Put main loop inside one more loop or try some other logic. Use of GOTO will create all the mess at last.
Forum: C Aug 6th, 2009
Replies: 7
Views: 382
Posted By DangerDev
Hay,
Just be cool, and go with cool mind, that's what you need hour before interview.
And Best of Luck :)
Forum: C Aug 5th, 2009
Replies: 3
Views: 231
Posted By DangerDev
post the code what ever you have done so far.
Forum: C Aug 5th, 2009
Replies: 18
Views: 601
Posted By DangerDev
Please don't use SMS like language, its making your problem tough to understand.
Now tell, from above program what are the outputs you are expecting.
Forum: C Mar 10th, 2008
Replies: 9
Views: 1,765
Posted By DangerDev
1. C is a beautiful language, developed by Denis Ritchie, its really very much powerful.
while
c# is an attempt to develop a language by microsoft to throw java from market. Its collection concepts...
Forum: C Mar 7th, 2008
Replies: 9
Views: 1,765
Posted By DangerDev
dont use your skill for destructive purpose !!!
use it for some development !
you can find some open source project on net, try to participate on them
Forum: C Feb 25th, 2008
Replies: 3
Views: 1,843
Posted By DangerDev
Hi
-First clearly analyze what this function will do
-make flow char or class diagram, or some paper plan
-code it
Forum: C Feb 21st, 2008
Replies: 6
Views: 888
Posted By DangerDev
i used visula studio 2005, it is not giving any run time error. can you tell what error you are getting.
Forum: C Feb 20th, 2008
Replies: 2
Views: 486
Posted By DangerDev
first try something from your side, if you are getting error put your code here, we will try to do some thing.
No one here would like to spoon feed any one.
Forum: C Feb 16th, 2008
Replies: 14
Views: 1,462
Posted By DangerDev
instead of everything writing in to main use function to write every thing then call those function from main.
their could be only one main method, hence in another file just have functions and...
Forum: C Feb 15th, 2008
Replies: 6
Views: 3,012
Posted By DangerDev
void pointer can point any type of data.

Example:

void* voidPtr; //void pointer
int iVal=10;
char cVal='a';
voidPtr=&iVal; //void pointer pointing to int type...
Forum: C Feb 15th, 2008
Replies: 9
Views: 875
Posted By DangerDev
yes any kind of return statement will end the function.
Forum: C Feb 15th, 2008
Replies: 5
Views: 1,797
Posted By DangerDev
thanx for suggestion
Forum: C Feb 14th, 2008
Replies: 17
Views: 4,586
Posted By DangerDev
try:


int sum(int num1,int num2)
{
for(int i=0;i<num2;i++)
num1++;
return num1;
}
Forum: C Feb 14th, 2008
Replies: 5
Views: 1,797
Posted By DangerDev
u can also getch() but it doesnot work in some compiler.
Forum: C Feb 7th, 2008
Replies: 8
Views: 5,641
Posted By DangerDev
No Homework, try u'r self
Forum: C Feb 7th, 2008
Replies: 5
Views: 868
Posted By DangerDev
Forum: C Feb 7th, 2008
Replies: 5
Views: 868
Posted By DangerDev
do u'r home work without internet,,,,,,,,,,

dont be dependent on net too much, it will suck.
Forum: C Feb 7th, 2008
Replies: 20
Views: 3,283
Posted By DangerDev
Forum: C Feb 6th, 2008
Replies: 8
Views: 5,641
Posted By DangerDev
hi
make a link list of pageinfo having following as node
Node{
TimeStamp t;
PtrToPage ptr;
}

now on the basis of this u can implement various available page replacement...
Forum: C Feb 6th, 2008
Replies: 2
Views: 2,545
Posted By DangerDev
hi
i think u r talking about variable no. of argument for that u can use stdarg.h...
Forum: C Feb 1st, 2008
Replies: 1
Views: 2,209
Posted By DangerDev
is it zipped one ? if so
no need to install just unzip it and put in to c drive, i think it will work. u just have to set environment veriable.
Forum: C Jan 31st, 2008
Replies: 9
Views: 1,292
Posted By DangerDev
>2) use good code. What the h*** is
mul = (int)pow((double)base,(double) i++);

i m using vc++ there pow function takes double as argument so its called type casting.


>#2) Where is main()...
Forum: C Jan 31st, 2008
Replies: 7
Views: 2,069
Posted By DangerDev
Hi, char array is not string, atof take string as param, put '\0' in the last of char array, probably then it will work
like:
char abc[]={'3','.','5','\0'};
printf("no. is %f",atof(abc));
Forum: C Jan 31st, 2008
Replies: 9
Views: 1,292
Posted By DangerDev
posting same question twice does not solve u'r problem.
Forum: C Jan 31st, 2008
Replies: 9
Views: 1,292
Posted By DangerDev
int base_numeric()
{
//works with any base 2-10
int number = 1101; //binary number
int base = 2; //from base 2
int i = 0;
int r = 0;
int mul;
while (number > 0)
{
Forum: C Jan 30th, 2008
Replies: 3
Views: 503
Posted By DangerDev
after passing sym to cnvrt() value of
row='0' and
col='0'-2= '.' (ascii of '0' is 48 and 48-2=46 which is ascii of character '.')
so ultimately
s_Hexdecitable[row][col]=s_Hexdecitable[48][46]
...
Showing results 1 to 32 of 32

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC