//WHAT HAPPENS WHEN a IS USED IN PRINTF BEFORE DECLARING IT...//#includeint main(){printf("%d\n",a);//a is said to be undeclared...//int a=5;return 0;}
/*PROG--I HAD -VE INT VALUE & MAKE IT +VE*/#includeint main(){int check=-2;printf("check=%d\n",check);printf("check=%p\n",check);printf("%d\n",(~check));//is its 1&#…
#includeint main(){ int a,b,c; printf("enter three sides a b and c\n"); scanf("%d%d%d",&a,&b,&c); if(a==b || b==c || c==a) {printf("eqilater");} else if(a==b…
#include#includeint main(){ int i,j,o; int size;int *p;
printf("enter the size of array\n");scanf("%d",&size);p=malloc(sizeof(int) * size);if(!p){perror("malloc");go…
#include#includeint main(){ int c=0, i,*sum,size; float avg;printf("enter the size of array\n",size);scanf("%d",&size);sum=malloc(sizeof(int)*size);//if("!sum")//{//…
/*HOW PARALLEL PORT DRIVER & CHARACTER DRIVER ARE REGISTERED....HOW PARALLEL PORT WORKS... *///1ST OF ALL..IN NIBBLE_MODE MEANS BIDIRECTIONAL MODE...////SEND BUSY SIGNAL IN BUSY PIN ....PIN WHICH…
1 #include//module_init is defined 2#include//module related & GPL()....module_descriptor is defined 3 #include//info regarding to kernel is defined// 4 #include//moduleparam is defined 5 #i…
IF BEFORE ...U HAVE USED UR DEVICE DEVICE & SOUND WAS COMING PERFECTLY & SOUND STOPS COMING SUDDENLY...MEANS U HAD CRASHED SOME PACKAGE .....OR THERE IS PROBLEM IN SETTING..TO INSTALL ALL PAC…
/*AN IMPLEMENTATION TO SHOW OPERATION OF ++MENT & --MENT OPERATORS BEHAVE*/#includeint main(){ int x=3; x=x++;//x=4..operation is not here..then value is assigned// printf(&q…
/*A SMALL IMPLEMENTATION TO PRINT ASCII VALUES OF LOWERCASE LETTERS*/#includeint main(){ int s; int waits=10; for(s=waits;s0;s--)//s=10 to 0 ..--menting loop will take place..// …
/*AN IMPLEMENTATION TO ADD KILOMETERS & METERS TO GET NET KILOMETERS & METERS VALUE*/#includeint main(){ int k1,k2,k3; float m1,m2,m3; m1=500,m2=570;//2 METER VALUES …
/*AN IMPLEMENTATION OF WRITIING A TABLE USING POINTER*/#includeint main(){ unsigned char arr[10];//TAKE ARRAY OF CHAR TYPE int num,i; num=15;//TABLE OF 15 unsigned char *…
/*AN IMPLEMENTATION TO SHOW HOW TO WRITE A TABLE..OF ANY NUMBER*/#includeint main(){ int arr[10];//TAKE AN ARRAY OF ELEMENTS UPTO U WANT TO WRITE THE TABLE int num,i; num=5;//SUP…
/*AN IMPLEMENTATION TO SHOW BEHAVIOUR OF OPERATORS WHEN USED TOGETHER WITH NO BRACKETS..*/#includeint main(){ { int x,y,z; x=2,y=1,z=0;//INITIALISE THE VALUES// …
/*AN NICE IMPLEMENTATION TO SEE WORKING OF ALL OPRATORS(&,|,&&,||,~ ) IN PRINTF FUNCTION OR OUT OF PRINTF FUNCTION*/#includeint main(){ int x,y,z; x=7,y=6,z=1;//VALUES ARE I…
/*AN IMPLEMENTATION TO SEE WORKING OF CONDITIONAL OPERATOR (?)WITH VARIOUS DIFFRENT TYPES OF OPERATORS(&,&&,|,||,~)..*/#includeint main(){int x=2,y=1,z=1;{printf("%d\n",x
/*A NICE IMPLEMENTATION OF MULTIPLE DATA COMPRESSION USING SOCKET*///WE KNOW SOCKETS..////SOCKETS ARE USED TO COMMUNICATE BETWEEN THE TWO SYSTEMS ON THE NET.//IN THIS PROJECT ...I HAD DEMANDED FOR A …
/*iIN SERVER*//*AN IMPLEMENTATION OF FTP USING SOCKET*///FTP IS NOTHING BUT DEALING OF FILES ON INTERNET...THROUGH SOCKET...SOCKET IS LIKE A PIPE WHICH WE HAD STUDIED BEFORE IN SINGLE SYSTEM..//NOW S…
/*AN IMPLEMENTATION REPRESENTING THE STACK ...CREATION OF STACK & ALSO WORKING OF STACK..*///STACK WORKS ON FILO ALGORITHM...FIRST IN LAST OUT...ALGORITHM....//MEANS IF WE ARE PUSHING THE VALUES …
//STACK WORKS ON FILO ALGORITHM...FIRST IN LAST OUT...ALGORITHM....//MEANS IF WE ARE PUSHING THE VALUES FROM TOP ..THEN WE //ALSO HAVE TO POP THE VALUES FROM TOP....//////THIS IS JUST LIKE NO. OF PLA…
/*AN IMPLEMENTATION OF QUEUE OF DATA STRUCTURE*///QUEUE IS WORKS ON FIFO ALGORITHM....MEANS FIRST IN FIRST OUT LOGIC....////MEANS PUT THE VALUES FROM UP & PICK THE VALUES FROM DOWN..& SHIFT A…
/////BASE ADDRESS OF LINKLIST SHOULD NEVER BE LOST IF UB WANT TO ACCESS THE LINKLIST.....//TO RECOGNISE LINKLIST I HAVE TWO TRICKS:-////1)IF start or any pointer->next is on left side means ,,,we …
/////BASE ADDRESS OF LINKLIST SHOULD NEVER BE LOST IF UB WANT TO ACCESS THE LINKLIST.....//TO RECOGNISE LINKLIST I HAVE TWO TRICKS:-////1)IF start or any pointer->next is on left side means ,,,we …
/*AN IMPLEMENTATION TO SHOW SORTING IN ASCENDING FORM & ALSO INSERTION USING POINTER ...*/#include#includeint main(){ int i,j,x,flag; int *ptr,*sort; ptr=malloc(5*sizeof(int)…
/*SORTING IN ASCENDING ORDER WITH INSERTION*/#includeint main(){ int i,j,x; //printf("\nENTER THE VALUE"); int arr[10]={2,7,3,1,9}; int arr1[10]={0};//insertion …
/*AN IMPLEMENTATATION TO GET MAX. VALUE OF INT ..OR CHAR || UNSIGED CHAR ETC*/#include#includeint main(){char temp;//temp=malloc(1);temp=-130;//max.value assigned to int |unsigned int is -999999999 t…
/*AN IMPLEMENTATION TO SHOW DECENDING SORTING & INSERTION */#includeint sorting();int main(){ int i,j,x; //printf("\nENTER THE VALUE"); //scanf("%d",&…
/*AN IMPLEMENTATION OF DATA STRUCTURE SORTING IN DECENDING FORM USING INSERTION INTO NEW ARRRAY & DO BINARY SEARCH FROM THAT ARRAY*/#includeint main(){int arr[5]={2,1,3,5,4};//this is old arrayi…
/*condition for binary search is this that... u have to use sorted array & u should know size of array in which element is to be searched otherwise do sorting 1st*/#includeint main(){ int …
/*AN IMPLEMENTATION OF SORTING OF AN ARRAY ..AND CHANGE POSITION OF ITS ELEMENTS TO TRANSFORM IT INTO ASCENDING ORDER ARRAY */#includevoid display(int*);void swap(int*,int);int main(){ int fla…
/*AN IMPLEMENTAION TO SHOW PASSING POINTER OF STRUCTURE OR POINTER AS ARGUMENT...HOW IT IS CATHCHED IN DEFINATION OF FUNCTION...& ATTENTION WHILE USING PASS BY POINTER*/#include#include//void del…
/*DATA STRUCTURE->INSERTION->>PUT NEW ELEMENT INTO A PERTICULAR POSITION OF AN ARRAY*/
#includeint assign(int,int,int*);void display(int*);int shifting(int,int*);int main(){ int in…
/*A program of data structure to represent a random array into sorted or decending order form.& put it into another array*///SORTING OF ARRAY MEANS...place the elements of array in serial wise..…
/*AN IMPLEMENTATION OF SEE THAT BY APPLYING BREAK..WEITHER IT LEAVES ONE LOOP IN WHICH IT IS APPLYED OR ALL OF THE LOOPS..IN WHICH WHICH THAT LOOP IS APPLYED IN WHICH THERE IS A BREAK STATEMENT*/#inc…
/*A PROGRAM REPRESENTING THE WORKING OF MALLOC WITH POINTER || WITHOUT MALLOC */#include#includeint main(){char *a;int *temp;temp=malloc(23);//any much amount of malloc ...is giving u 4 bytes to poin…
/*A small program to represent no. of conditions inside the switch*//*A program to represent switch ,do while & if else togehther */#include#includeint sum(int a,int b)//IF function is defined ab…
/*A small program dealing with char & represent where ascii values r printed by %d ||where not*/#includechar main(){int i=0;char a=45;char* c =0;//is a pointerprintf("\ni m =%d",a);//it…
Today i successfully store a uEnv.txt on the target's sd card which load a further a uEnv.txt stored under tftp directory on host or other server and that final uEnv.txt loads the uImage from t…
6 locks: strict
7 root: 1.1
8 access list:
9 symbolic names:
10 keyword substitution: kv
11 total revisions: 1; selected revisions: 1
12 description:
13 program to get position of a c…
comment @ * @;
1.4
date 2014.07.11.07.42.17; author root; state Exp;
branches;
next 1.3;
1.3
date 2014.07.11.06.48.28; author root; state Exp;
branches;
next 1.2;
1.2
d…
head 1.3;
access;
symbols;
locks
root:1.3; strict;
comment @ * @;
1.3
date 2014.07.11.05.17.11; author root; state Exp;
branches;
next 1.2;
1.2
date 2014.07.10.07.11.22; …
/*CALCULATION OF FEET & INCHES USING POINTERS & SEE HOW VAUE INSIDE THE POINTER IS ++MENTED & SUBTACTED*/#includeint main(){float *i3,i1,i2;i1=7,i2=11;float p;p=i1+i2;//ADD 2 VALUES &…
*A PROGRAM TO CALCULATE FEET & INCHES ..*/#includeint main(){int f1,f2,f3;float i1,i2,i3;f1=5,f2=8;i1=7,i2=11;i3=i1+i2;//ADD 2 INCHES..IF INCHES ARE GREATER THAN 12 THEN ++MENT FEET BY 1 BCZ 1FEE…
/*A SMALL PROGRAM TO SHOW HOW OPEN SYSTEM CALL IS USED*/#include#include//fcntl.h header file is neccessary to use system call#include#includeint main(){int fd;//now fd is a normal variable...but it …
/*A SMALL PROGRAM TO PUT CHARACTER IN CHAR TYPE VARIABLE & SEE WHILE PUTTING SAME CHARACTER IN POINTER*/#includeint main(){char c;c='x';printf("%c\n",c);char *p;printf("%…
/*A SMALL PROGRAM TO SEE BEHAVIOUR OF PRE++MENT OPERATOR */#includeint main(){int b=0;int a=0;a=++b;//preincrement of b means ++ment value of 1st & put it into a then....nw both will be sameif(a…
/*NICE PROGRAM TO PRESENT WORKING OF ARRAY OF POINTER*/#includeint main(){char *arr[]={"hello","hi","bye","bye"};//array of pointer..a array in which no. of st…
/*FILE TO BE COMPRESSED*/1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ./defined in . In most situations, you want to use a version of kmaprather than page_address.#include void *kmap…
#include
#include
#include
#include
#include
int fd,wfd,count=1,size=1,flag=1,ret;
int create_masterarray(char);
char* masterarray;
int indu(char);
int codelength(int);
int compress();
int decompress…
/*THIS IS 3 BIT COMPRESSION & DECOMPRESSION*///HEADER FILE CONTAINS ALL THE HEADERS ..& DELARATIONS,,,& GLOBAL VARIABLES#include#include#include#include#includeint size=1,fd,count,wfd,fla…
/*THIS IS 2 BIT COMPRESSION & DECOMPRESSION OF FILE..*///IN THIS CODE..2 BITS ARE USED TO REPRESENT MAX. 4 DISTINCT CHARACTERS..//SIZE OF FILE MAY BE MORE THAN 4,..BUT DISTINCT CHARCTERS SHOULD B…
#include 2 #include 3 struct anu 4 { 5 6 }; 7 int main() 8 { 9 printf("sizeof(struct anu)=%d\n ",sizeof(struct anu)); 10 return 0; 11 }/*size of struct will be 0 but in the same s…
/MY PROGRAM ARE COMPILED IN FEDORA15 ..WITH 4.6 gcc compiler.....//*SUPPOSE THIS IS FILE IN WHICH DISTINCT NO. OF CHARACTERS IS 2....WHICH IS TO BE COMPRESSED*/
//source file
ANANANANANANANANANANANA…
1) Device drivers of new devices are always written in C. The reason is
that C provides you access to the basic elements of the computer. It
gives you direct access to memory of your CPU through …
Linked lists are a way to store data with structures so that the programmer
can automatically create a new place to store data whenever necessary.
Specifically, the programmer writes a struct defin…
nil is an empty value.nil got no reference/address, just an empty value.
for example : next pointer of my structure is empty ..means my pointer is pointing to last node.there is NULL in next pointer …