Implemented link-list and done fork and system system call..
sir, in initialization and exit function i m sending 0 on data register. after it without changing data register from one pc, when i read status register from 2nd pc, sometimes it read 1111 in first nibble and some time … Continue reading
Scalpel This is a filesystem-independent recovery tool for Linux and Mac OS, which you can also run on Windows by compiling it with MinGW. The latest version is 2.0. Install it in Fedora with # yum install scalpel. Next … Continue reading
Being Asynchronous with other code….
what is diffference between delay ,sleep & wait…which one to use when?please clarify.
Sir, Please tell a way to improve my vocublery?
#include #define size 4 int main (void) { int val1=44; int arr[size]; int val2=88; int i; printf(“value1 = %d,value2= %d\n”,val1,val2); for(i=-1;i<=size;i++) arr[i]=2*i+1; printf("value1 =%d,value2=%d\n",val1,val2); for(i=-1;i<7;i++) printf("%2d %d\n",i , arr[i]); printf("value1 =%d,value2=%d\n",val1,val2); printf("value1 =%d,value2=%d\n",val1,val2); return 0; } value1 = 44,value2= 88 … Continue reading