EmbLogic's Blog

Status to Pravjot Sir

Successfully implemented Parallel Port:Byte mode according to the protocol.

Posted in Uncategorized | Leave a comment

E10:CVS and Assignmnet 2

CVS server created with some issues regarding importing and assignment 2 completed…3 assignment starts..

Posted in Uncategorized | Leave a comment

E10

Assignment 1,2 completed

Assignment 4 starts.

cvs server set,with some issues.

Posted in Uncategorized | Leave a comment

E10

Assign ment 3,4 of arrays done.

rcs,functions implemented.

cvs server set up,with some issues in clients.

Assignment 5 starts.

Posted in Uncategorized | Leave a comment

E10 CVS set up

cvs user created today..having some issues in client

…doing assignment 4..

Posted in Uncategorized | Leave a comment

In array

how to declear array?

Posted in Uncategorized | Leave a comment

(E-10) assignment-5 (pointer) and cvs done

assignment 5(pointer) till q-14 done but there are some issues in cvs…….

Posted in Uncategorized | Leave a comment

cvs done and assignment pointer

issues in cvs and assignment 5 till q12 and assignment2 till q14 done

Posted in Uncategorized | Leave a comment

assignment 5(E-10) and cvs done

pointer assignment till q14 done … and cvs is done but with some issues…..

Posted in Uncategorized | Leave a comment

e10 kuldeep

first two assignement have been completed    and practise of make rcs file  in shell script

thirad starts

 

 

Posted in Uncategorized | Leave a comment

LINKED LIST

#include<stdio.h>
#include<stdlib.h>

struct node
{
int data;
struct node *next;
};
typedef struct node item;
void main()
{
item *head[10];

int i;
for(i=0;i<10;i++)
{
head[i]=malloc(sizeof(struct node));
head[i]->data=i+5;
head[i]->next=head[i+1];
}

head[10]=NULL;

for(i=0;i<10;i++)
{
printf(“Address of head[%d] is %p and value is %d\n”,i,&head[i],head[i]->data);
}
}
its executing but am confused can smone tell me ??

Posted in Uncategorized | 1 Comment

Parallel Port

Byte mode implemented for multiple bytes with synchronization.

Nibble mode implemented for multiple bytes with synchronization. but code is not optimized yet.

Posted in Uncategorized | Leave a comment

New Batch – E8

Hi Siddharth Sir,
List of E8 batch trainees:
Sumit , Ashu , Shiv , Sanjeev , Suresh , Ankit , Nishank , Maninder, Avtar, Ashish, Yousuf , Dhiraj , Shiv Kumar, Sourabh and Yashvardhan

Hi Team(E8 batch),
As we are not having a session tomorrow, Please implement all the topics covered in today’s session (Advanced Data Structures) and share your status with me by tomorrow. You can send me an email (yashvardhan1911@yahoo.com)or a text msg. (8860958483).
We will be having a team meeting on Monday after attending session and will discuss few things.

Regards,
Yash

Posted in Uncategorized | Leave a comment

Parallel Port Status to Prabjot Sir

  1. Implemented Compatibility Mode.
  2. Implemented Nibble mode for single and multiple bytes.
  3. Implemented Byte mode for single byte.
  4. Working on Byte mode for multiple bytes.
Posted in Device Drivers, Parallel Port Driver | Leave a comment

Tanvir:E10:Assingment 2

sir

i did five question of second assignment today.

Posted in Data Structures with C | Leave a comment