Search Results

Showing results 1 to 40 of 119
Search took 0.01 seconds.
Search: Posts Made By: Jishnu ; Forum: C and child forums
Forum: C Jul 4th, 2008
Replies: 10
Views: 1,176
Posted By Jishnu
More true would be, "To make the OS compatible with maximum amount of uPs that are being used in the target market."
Forum: C Jul 4th, 2008
Replies: 13
Views: 7,450
Posted By Jishnu
Forum: C Jul 3rd, 2008
Replies: 10
Views: 1,176
Posted By Jishnu
Then don't do it in the first place.
Forum: C Jul 3rd, 2008
Replies: 10
Views: 1,176
Posted By Jishnu
Exactly. Work out those details before commencing this big a task.
Forum: C Jul 3rd, 2008
Replies: 13
Views: 7,450
Posted By Jishnu
I'd reported this problem earlier in DaniWeb Community Feedback, but somehow, things didn't work out. Some problem regarding the workload that means for the mods or the work required for automating...
Forum: C Jun 28th, 2008
Replies: 5
Views: 2,038
Posted By Jishnu
Oh, I didn't realize that earlier. This is what happens when you go on switching between the C and C++ forums.
Forum: C Jun 27th, 2008
Replies: 4
Views: 470
Posted By Jishnu
Codes along with relevant comments always get more help!
Forum: C Jun 27th, 2008
Replies: 5
Views: 2,038
Posted By Jishnu
http://www.codeproject.com/KB/GDI/kanjifont.aspx

Though, I'm not sure whether it will help you in the case of Hindi.
Forum: C Jun 26th, 2008
Replies: 2
Views: 916
Posted By Jishnu
Tanenbaum would be a good idea.
Forum: C Jun 25th, 2008
Replies: 4
Views: 1,624
Posted By Jishnu
Forum: C Jun 24th, 2008
Replies: 4
Views: 2,209
Posted By Jishnu
Modify which program?
Forum: C Jun 24th, 2008
Replies: 8
Views: 783
Posted By Jishnu
printf("how many words u wanna sort\t");
scanf("%ld", &num);
getchar();

words=(char *)calloc(num, sizeof(char));

Put the above statements in the main() function and the code should be...
Forum: C Jun 24th, 2008
Replies: 5
Views: 660
Posted By Jishnu
Go through all these (http://www.cprogramming.com/tutorial/computersciencetheory/sorting1.html) tutorials first.
Forum: C Jun 24th, 2008
Replies: 8
Views: 3,539
Posted By Jishnu
Exactly. Also see the article 'How to ask questions the smart way' over here.
Forum: C Jun 22nd, 2008
Replies: 16
Views: 2,768
Posted By Jishnu
Refer my previous post. And use code tags. Don't use getch() in the while loop. Perform the storing and comparing operations there. And at the end of it all calculate the time elapsed as described...
Forum: C Jun 22nd, 2008
Replies: 7
Views: 1,170
Posted By Jishnu
Oh, okay. I'm sorry.
Forum: C Jun 21st, 2008
Replies: 2
Views: 548
Posted By Jishnu
Ditto. You've just typed your assignment :D
Forum: C Jun 21st, 2008
Replies: 16
Views: 2,768
Posted By Jishnu
Use the clock() function available in time.h twice. Once for starting the time and the other for stopping it. Take the difference and you have the time elapsed. Errors can be simply calculated by...
Forum: C Jun 21st, 2008
Replies: 7
Views: 1,170
Posted By Jishnu
Other IDEs for the same are Win-AVR, ICC-AVR, CodeVision AVR etc. Try them.
Forum: C Jun 18th, 2008
Replies: 20
Views: 1,622
Posted By Jishnu
Okay. Did you use one with your code what did you observe? Did it help you in further optimization?
Forum: C Jun 17th, 2008
Replies: 20
Views: 1,622
Posted By Jishnu
I've not heard that word before. I'm interested too!

Place two calls to clock(). One before calling the function and another at the starting of the function. Take the difference between the two...
Forum: C Jun 17th, 2008
Replies: 20
Views: 1,622
Posted By Jishnu
Time.h has a function clock() which returns a structure of the type clock_t, which is again defined in time.h. Use that.



Me too.

Edited: After seeing your optimizations, I don't think...
Forum: C Jun 17th, 2008
Replies: 3
Views: 577
Posted By Jishnu
Just take up any example that's between the experimental and the professional extremities. Start coding on your own. There's no substitute for hands-on programming experience if you want to reach...
Forum: C Jun 10th, 2008
Replies: 9
Views: 960
Posted By Jishnu
Okay. I've got to accept it, %p would be better.
Forum: C Jun 10th, 2008
Replies: 9
Views: 960
Posted By Jishnu
Or use %u as addresses are of the type unsigned int.
Forum: C Jun 10th, 2008
Replies: 3
Views: 3,007
Posted By Jishnu
Show your efforts. This is not the place for getting your home-work done.

And read the basic books for programming in C before you start coding!

There are many ways to solve a single problem....
Forum: C Jun 10th, 2008
Replies: 4
Views: 814
Posted By Jishnu
http://www.google.co.in/search?q=float+code&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a
;)
Forum: C Feb 15th, 2008
Replies: 3
Views: 1,504
Posted By Jishnu
Use code tags. Mention specific problems and the line no.s. The size of the code is a bit too lengthy. Proper formatting and specific questions would take you a long way ahead in getting help.
Forum: C Jan 4th, 2008
Replies: 28
Views: 5,502
Posted By Jishnu
I can give you loads of links regarding the theory and its various applications. But if you'll narrow down the topic to exactly how (i.e. using what) do you want to accomplish multi-signal...
Forum: C Jan 3rd, 2008
Replies: 28
Views: 5,502
Posted By Jishnu
You transmit different signals at different frequencies. One option that I earlier used is by implementing square wave generator using IC 555. At the receiver end, you can have different ICs for...
Forum: C Jan 2nd, 2008
Replies: 28
Views: 5,502
Posted By Jishnu
Connect Signal1 to one terminal and Signal2 to the second terminal.

If Signal1 is 0V and Signal2 is 5V, dc motor rotates in one direction. If Signal1 is 5V and Signal2 is 0V, dc motor rotates in...
Forum: C Dec 31st, 2007
Replies: 3
Views: 5,008
Posted By Jishnu
From what I understand, you want to convert char to int. That has been answered. Then you want to convert the int to binary. Where do you want to store that binary value? In another array? Please...
Forum: C Dec 31st, 2007
Replies: 4
Solved: Decompile
Views: 1,254
Posted By Jishnu
If you are deeply interested in this sort of a thing, then try learning reversing. You cannot get the exact code written by the user because the code is modified (keeping the meaning same...
Forum: C Dec 31st, 2007
Replies: 28
Views: 5,502
Posted By Jishnu
Give clear specifications regarding what you want to achieve using serial port programming.
Forum: C Dec 27th, 2007
Replies: 14
Views: 8,571
Posted By Jishnu
It is obvious from the earlier posts. Try AD's suggestions..
Forum: C Dec 26th, 2007
Replies: 15
Views: 1,718
Posted By Jishnu
Forum: C Dec 26th, 2007
Replies: 28
Views: 1,943
Posted By Jishnu
Yes, of course. These concepts are very much new to me and it will take quite a bit of time to have a decent grip over them. Thank you very much :)
Forum: C Dec 24th, 2007
Replies: 28
Views: 1,943
Posted By Jishnu
Do C and C++ support sockets? Are any special libraries required?
Forum: C Dec 24th, 2007
Replies: 28
Views: 1,943
Posted By Jishnu
@Duoas



I agree.



I didn't understand this, Duoas. Please would you elaborate a bit? Terms like basic language interpreter and sandbox environment are completely new to me.
Forum: C Dec 23rd, 2007
Replies: 14
Views: 8,571
Posted By Jishnu
In case of VB, try searching for MSComm controls on google.
Showing results 1 to 40 of 119

 


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

©2003 - 2009 DaniWeb® LLC