EmbLogic's Blog

Category Archives: Uncategorized

Today’s update

Implemented link-list and done fork and system system call..

Posted in Uncategorized | Leave a comment

Parallel Port “nibble mode” query…

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

Posted in Uncategorized | 1 Comment

Recover deleted files in Linux

  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

Posted in Uncategorized | Leave a comment

What exectly this line says…??

Being Asynchronous with other code….

Posted in Uncategorized | Leave a comment

update

stacks and queues using arrays done..

Posted in Uncategorized | Leave a comment

cvs server

implemented cvs server and client

Posted in Uncategorized | Leave a comment

doubts on delay & sleep

what is diffference between delay ,sleep & wait…which one to use when?please clarify.

Posted in Uncategorized | 3 Comments

To Mr. Deepak.

Sir, Please tell a way to improve my vocublery?

Posted in Uncategorized | Leave a comment

array assignment problem

#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

Posted in Uncategorized | Tagged | 2 Comments

Socket

Client Server project implemented through sockets.

Posted in Uncategorized | Leave a comment