EmbLogic's Blog

error

pease tell me what is fatal erro

Posted in Uncategorized | 2 Comments

assignment 2nd

assignment 2nd complete except 5th,6th ques…………….

Posted in Uncategorized | Leave a comment

signals

void signal_handler( int sig)
{
if(sig==SIGINT)
{
printf(“Signal %d received\n”,sig);
(void) signal(SIGINT,SIG_IGN);
(void) signal(SIGINT,SIG_DFL);
}………….

in the above code when we press ctrl+c for the second time signal terminates the process instead of being ignored…is there any error in the above code??

Posted in Uncategorized | 2 Comments

to sidharth sir regarding today’s session

sir is this possible to use comparisons like (a<b) with case statement?? :D

Posted in Uncategorized | Leave a comment

assignment 1 shell scripting done

Posted in Shell Scripts | Leave a comment

E10 commands

after giving the who command which basically tells who the user is we get

username ttyl date time

username pts/0 date time

what is meant by this ttyl and pts/0 ?

Posted in Uncategorized | 1 Comment

start the 1st assignment

sir

i have start 1st assignment and completed 7 program

Posted in Data Structures with C | Leave a comment

First assingment

sir,

i completed my first assingment

Posted in Data Structures with C | Leave a comment

To Pravjot Sir

Successfully implemented parallel port in compatibility mode and  in nibble mode.

Posted in Uncategorized | Leave a comment

how to use or in shell scripting

jst kindly provide me with the syntax how could or statement be used with “IF” in shell

Posted in Shell Scripts | Leave a comment

can we use break statement in case

Posted in Shell Scripts | Leave a comment

E10 Rishi Kumar

Assignment 1 and  Assignment 2 completed………….

Posted in Uncategorized | Leave a comment

Parallel Port status to Prabjot sir

Implemented compatibility and byte mode for parallel port.

Posted in Uncategorized | Leave a comment

Parallel Port status to Prabjot Sir

  • Implemented Compatibility mode.
  • Implemented Byte mode.
  • One problem: System hangs during data transfer. On the removal of wire, system resumes and data is received on the other system.
Posted in Device Drivers, Parallel Port Driver | Leave a comment

problem in execution

#include
int main()
{
int i=1;
printf(“%d%d%d%d%d”,i,++i,i++,++i,++i);
return 0;
}
what wil be the output with reason?

Posted in Uncategorized | 4 Comments