#include
//Program for Bubble Sorting
int * bubblesort(int*,int);
int display(int *,int);
int main()
{
int i,j,a[100],N,temp;
printf("Enter no.of elements you want to sort:\t")…
Signals
========
- A signal is an event generated by UNIX/LINUX system in response to some condition.
- On receipt of a signal, process may in turn take some action.
- Signals are generated by some e…
Replacing a Process Image
=========================
- The exec function replaces current process with a new process.
- The path of new process is specified as argument to exec.
- It is defined in hea…
Process Duplication
===================
- A new process is created using fork().
- fork() is a system call.
- fork duplicates the current process.
- It creates a new entry in the process table with m…
I am using dual boot with win7-64 bit. Its been couple of days fedora boot time is increased dramatically, here is the output of systemd-analyze & systemd-analyze criticalchain. Can any one solve…
Warnings - deprecated conversion from_string constant char* - 2015
There are 3 possible solutions::
We need to change the char * to const char *1:We should assign all string literals to a pointer of …
access list:symbolic names:keyword substitution: kvtotal revisions: 15; selected revisions: 15description:diffrent case is created.he is selected by a entering a choice.----------------------------re…
*A PROGRAM TO SEE BEHAVE OF POINTER WHEN PUTTING ITS ADDRESS INTO ANOTHER POINTER*/#includeint main(void){ int value=77,num=99; int *pv=&value,*pn=# int **ppi; …
what is the special features of C99. why,prototype declararion is not needed in C99 at most time .except in case of pointer.may be i am wrong also prototype declararation is not needed in case of …
when i am trying to update the value of file->f_pos in the read routine,why the value of file->f_pos in the lseek routine is not updating ??I made my read application to continue in while loo…
///PIPE COULD BE EASILY IMPLEMENTED BY CREATING A NEW PROCESS....FIFO COULD BE EASILY IMLEMENTING BY CREATING A NEW THREADS.......
///no problem like in fifo .......that writer have to write untill r…
/*TO FIND IF NUMBER IS POWER OF 2 USING ANOTHER WAY*/#includeint main(){int x=8;if(((~x+2))==(-x))//x=0000 1000 ~x=1111 0111 ~x+1=1111 1000..last four bits of every power of 2 are same ..not 8 bits..…
//AN ATTEMPT FOR CONVERTION OF INCHES TO CM..//#includeint main(){ int cm=0,inch=45; cm=inch*2.54;//multiply inch by 2.54 to convert it into centimeter..// printf("cm=%d\n&q…
i created shared memory using shmget() and also attached two processes with the same shared memory but still the nattach value is zero?
and i never deattached the process in any of the case..
How is …
1. When we want to use serial port interrupt ,which is the correct place to enable interrupt.In driver init() or open() ?
2. In the function request_irq() the first argument is the interrupt number. …
i made a program client server using one client in fedora 17. It works in fedora 17 properly and also fedora 15 but it is not working in fedora 16 . It also work on ubuntu 10.01 but not ubuntu one . …
Anybody have idea about this error:
: In function ‘dummy’:
:7:67: error: invalid use of undefined type ‘struct pthread’
make[2]: *** [/home/emblogic/pooja_g/TOOLCHAIN/build-utilities/build-glipc/tls…
Error while make after configuration:
mv -f /home/emblogic/arm/TOOLCHAIN/build-tools/build-glibc/csu/version-info.hT /home/emblogic/arm/TOOLCHAIN/build-tools/build-glibc/csu/version-info.h
make[2]:…
I am getting error while running make check in buid-gcc.
/bin/sh: line 3: cd: x86_64-unknown-linux-gnu/libstdc++-v3: No such file or directory
make[1]: *** [check-target-libstdc++-v3] Error 1
make[1…
The information for the size of the memory allocated to a pointer, is
stored at the location 4 bytes ahead of the address of the pointer.(32 bit sys)
if the address of the pointer is 0x8920208 then…
as i excute the server.c and client.c first time, they they execute good. but as i execute them next time they are not performing well.....but as i remove the formed server using "rm server_sock…
/ simple way to understand structure pointer*/#include
struct data 1
{
float *e;
float *f;
};
struct data
{
Int *a;
Int *b;
struct data 1 *d1;
};
Int main()
…
Problem : While running the reader or the writer the system freezes.
Sol
: This is due to the optimizations made by the compiler. Declare the
variable used for polling as "volatile" to …
A shell can increase the speed and efficiency of computer
Shells provide greater control over your system
Allows you to do some things that simply cannot be done from the graphical environment
Shells…
/MY PROGRAM ARE COMPILED IN FEDORA15 ..WITH 4.6 gcc compiler.....//*A program to see weither stack of threads exist in process creating these threads..or out of process...........*/ 2 //QUES ARI…
Is it a good idea to pass/write the address of the structure containing
operands and operator from requesting clients into the PIPE or
FIFO????????????????????????
bcoz with this approach we…
/*A MISHAPPENING WITH CODE BY OVERRITING SAME CODE WHICH IS RUNNING NOW*/#include#include#include#include#includeint main(){char buff;int sor,wfd,bfd,count=1,i=0;bfd=open("desti",O_RDONLY);…
My document ID is not getting open.Anybody please upload a screenshot of structure assignment present in C language and Data structure module.
Thanks :-)
1 /*IN THIS READ OPERATON...WE HAVE TO READ CHARACTERS FROM THE DEVICE & WRITE INTO APPL ICATION*/ 2 #include"header.h" 3 #include"dec.h" 4 ssize_t scullread(struct fil…
1 /*PROGRAM TO SHOW SQRT OF a..when FUNCTION IS DEFINED BY #DEFINE */ 2 #include 3 #define sqrts(a) a*a//HERE IS DEFINATION OF FUNCTON// 4 int main() 5 { 6 int i; 7 i=sqrts(25+1);//10…
/*A C PROGRAM TO CHECK PARITY OF NUMBER*/ 2 #include 3 int main() 4 { 5 int parity=0,num; 6 printf("enter the number"); 7 scanf("%d",&num); 8 while(num)//LOOP WILL OPE…
/*A PROGRAM TO COMPARE 2 FILES & ENTER THE DIFFRENCE OF CHARACTERS IN 2 FILES INTO 3RD FILE*/#include#includeint main(){char buff,set;int fd1,fd2,wfd,count1=1,count2=1;fd1=open("source1"…
/*..A PROGRAM TO ANALYSE THE 2D ARRAY..*/#includeint main(){ int i,j,m,n; int arr[10][10]; printf("PLEASE ENTER THE NO. OF ROWS & COLUMNS:\nARRAY:\n"); scanf…
/*..A PROGRAM TO GET TRANSPOSE OF MATRIX..*/#includeint main(){ int matrix[10][10],trans[10][10]={0},i,j,m,n; printf("PLEASE ENTER THE NO. OF ROWS & COLUMNS:\n"); s…
/*A PROGRAM TO ENTER THE TIME WHEN 2 HANDS OF CLOCK CROSSES EACH OTHER & NO. OF TIMES 2 HANSDS OF CLOCK CROSSES EACH OTHER*/#includeint main(){ int i=0,j=0; for(i=1;i
/*A PROGRAM TO ENTER VALUE FROM COMMAND LINE & CONVERT STRING TO INT VALUE & APPLY OPERATION ON THAT FORMULA..*/#includeint main(int argc,char* argv[])//ENTER THE ARGUMENTS FROM COMMAND...//i…
/*A PROGRAM TO FIND POSITION OF LETTERS OF SUB-SET ARRAY IN ARRAY*/#includeint main(){ int i,j; char s[]="ABCDEFGHIJKL"; char t[]="BDEGHJL"; for(i=0;it…
*A PROGRAM TO FIND SUM & AVERAGE OF EVEN & ODD INTEGERS BY IDENTIFYING*/#includeint main(){ int counto=0; int ger,count=0,sume=0,sumo=0,avge=0,avgo=0; do { …
/*A PROGRAM TO CONVERT HOURS INTO MINUTES*/#includeint main(){const int set=60;int choose,min=0,hr=0;do{printf("ENTER +VE NO IF U WANT TO CONVERT HOURS INTO MINUTES\n");scanf("%d"…