RCS file: mdc.c,v Working file: mdc.c head: 1.6 branch: locks: strict emblogic: 1.6 access list: symbolic names: keyword substitution: kv total revisions: 6; selected revisions: 6 description: successfully created master array finded no of distinct charcters also using functions currently … Continue reading
C Reference function rand() generate a random number This function of stdlib will generate a random number. Usage of rand(): int rand (void); Parameters: The function rand() returns a pseudo-random integral number. This number will be in the range 0 … Continue reading
IT is revision control system. With the help of this we can create an image file and we can change our data, and if we want back our previous data, we can do it with the help of rcs. To … Continue reading
What Is the Difference Between Hyper Threading & Multi-Core Technology? The technology behind Hyper-Threaded, or HT, and multi-core processors enables processors to far exceed the performance of single-core, non-HT processors. The differences between the technologies are great, however, so it’s … Continue reading
Proc is sometimes referred to as a process information pseudo-file system. It doesn’t contain ‘real’ files but runtime system information (e.g. system memory, devices mounted, hardware configuration, etc). For this reason it can be regarded as a control and information … Continue reading
Most people don’t even know that running processes at a different priority is an option. Many have never even heard of the nice command. In this article, I will discuss what thenice command can do for your processes. Every process needs … Continue reading
head 1.1; access; symbols; locks arjun:1.1; strict; comment @ * @; 1.1 date 2014.03.29.16.36.13; author arjun; state Exp; branches; next ; desc @ipc using fifo here we are using one fifo for requesting client to server we are able to … Continue reading
here is code… int main() {if(printf(“hello”)) }
#include #include #include struct node { int a; struct node *next; }; struct node * create_ll(); void display(struct node *); void rev(struct node *); int main() { struct node *start ,*temp,*temp1; int i,n; start=create_ll(); temp=start; printf(“enter node\n”); scanf(“%d”,&n); for(i = … Continue reading
head 1.1; access; symbols; locks; strict; comment @ * @; 1.1 date 2014.03.29.11.10.17; author emblogic; state Exp; branches; next ; desc @this is a program of stack implementation using poimters @ 1.1 log @Initial revision @ text @#include”header.h” int main() … Continue reading
RCS file: fun.c,v Working file: fun.c head: 1.1 branch: locks: strict access list: symbolic names: keyword substitution: kv total revisions: 1; selected revisions: 1 description: this is the program of implementation of stacks using pointer. —————————- revision 1.1 date: 2014/03/29 … Continue reading
rlog: RCS/vim,v: No such file or directory RCS file: llrev.c,v Working file: llrev.c head: 1.1 branch: locks: strict access list: symbolic names: keyword substitution: kv total revisions: 1; selected revisions: 1 description: this is the program of reversing link list … Continue reading
Figure of circular queue R->Rear F->Front Initially rear=front=0 Circular queue is as shown in figure it is like a array size in which element are from 0 to (n-1) if array is of length n it is divided into nodes … Continue reading
head 1.5; access; symbols; locks arjun:1.5; strict; comment @ * @; 1.5 date 2014.03.28.17.04.43; author arjun; state Exp; branches; next 1.4; 1.4 date 2014.03.27.15.56.06; author arjun; state Exp; branches; next 1.3; 1.3 date 2014.03.27.06.05.30; author arjun; state Exp; branches; next … Continue reading
An overview of Pthreads Introduction Thread: A Thread is a ‘Light Weight Process’. A thread is a stream of instructions that can be scheduled as an independent unit. A thread exists within a process, and uses the process resources. Since … Continue reading