Forum: Kernels and Modules Aug 10th, 2009 |
| Replies: 1 Views: 727 hi everybody,
i have choosen a project as my fyp,the project which can change the priority of any process. It is just like nice command. So can anyone suggest me how to proceed in this project. the... |
Forum: Kernels and Modules Jul 19th, 2009 |
| Replies: 4 Views: 865 I think you r getting me wrong salem, i mean to say that i want to build some project related to process sheduling, memory management etc.. for example : a program through which user can view... |
Forum: Kernels and Modules Jul 18th, 2009 |
| Replies: 4 Views: 865 Thank you for giving such a nice idea, can you please suggest me something about process sheduling, memory management etc.. |
Forum: Kernels and Modules Jul 16th, 2009 |
| Replies: 4 Views: 865 hi every one,
i am a final year student. I want to make a project related to kernel........, but i am not able to think any new idea related to kernel so please give me some idea related to kernel... |
Forum: Shell Scripting Jul 6th, 2009 |
| Replies: 4 Views: 830 Thank u salem. its working........... |
Forum: Shell Scripting Jun 23rd, 2009 |
| Replies: 4 Views: 830 Hi everybody, I have a problem in include path. i want to keep my all header file in folder named myInclude and include it like #include<myInclude/header.h>, Is there any possible way to do this, if... |
Forum: C Mar 14th, 2009 |
| Replies: 5 Views: 339 Check it out..............
#include<stdio.h>
#include<conio.h>
#include<string.h>
void main()
{
int num,numcnt,div,i=1,n=0;
char str[10][10];
clrscr(); |
Forum: C Feb 4th, 2009 |
| Replies: 3 Views: 297 Hello everyone, I have created my own header file but it doesn't work if i just include like "myfile.h" and it works fine if i include like "myfile.c". I just want to know that why this thing... |
Forum: C Feb 2nd, 2009 |
| Replies: 5 Views: 389 You are doing a bit mistake over here...........
fprintf(fp1,"%d\n",&numbers[i]);
please don't give '&' before 'numbers[i]'
if u still face problem then just see my program
... |
Forum: C Feb 2nd, 2009 |
| Replies: 11 Views: 744 Sorry Aia actually i m not getting the concept of
cp = strchr(num,'.');
com = cp-num;
can u plz explain for me.........
thanx |
Forum: C++ Nov 25th, 2008 |
| Replies: 18 Views: 888 just try this one...........................
ifstream fin;
cout << "Enter filename: ";
getline(cin, ifile);
fin.open(ifile.c_str());
if(fin.fail())
{ |
Forum: C++ Nov 25th, 2008 |
| Replies: 6 Views: 27,170 yes that is a correct way u can proceed.........
but the only thing u need to do is that u should use char array in place of char variable, and the function atoi is return an int value so u should... |
Forum: C++ Nov 21st, 2008 |
| Replies: 3 Views: 410 struct node
{
int data;
struct node *link;
};
void delet(struct node **currNode,int location)
{
int i; |