Forum: C Aug 11th, 2009 |
| Replies: 7 Views: 238 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 Please use proper English, didn't you read above posts by yellowSnow? |
Forum: C Aug 10th, 2009 |
| Replies: 7 Views: 238 Please post your question.
Please use English which every one can understand.
What is vf? |
Forum: C Aug 7th, 2009 |
| Replies: 21 Views: 940 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 |
Forum: C Aug 7th, 2009 |
| Replies: 12 Views: 750 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 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 post the code what ever you have done so far. |
Forum: C Aug 5th, 2009 |
| Replies: 18 Views: 601 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 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 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 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 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 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 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 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 yes any kind of return statement will end the function. |
Forum: C Feb 15th, 2008 |
| Replies: 5 Views: 1,797 |
Forum: C Feb 14th, 2008 |
| Replies: 17 Views: 4,586 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 u can also getch() but it doesnot work in some compiler. |
Forum: C Feb 7th, 2008 |
| Replies: 8 Views: 5,641 No Homework, try u'r self |
Forum: C Feb 7th, 2008 |
| Replies: 5 Views: 868 ....what an assignment. ;) |
Forum: C Feb 7th, 2008 |
| Replies: 5 Views: 868 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 |
Forum: C Feb 6th, 2008 |
| Replies: 8 Views: 5,641 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 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 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 >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 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 posting same question twice does not solve u'r problem. |
Forum: C Jan 31st, 2008 |
| Replies: 9 Views: 1,292 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 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]
... |