Successfully implemented Parallel Port:Byte mode according to the protocol.
Successfully implemented Parallel Port:Byte mode according to the protocol.
CVS server created with some issues regarding importing and assignment 2 completed…3 assignment starts..
Assignment 1,2 completed
Assignment 4 starts.
cvs server set,with some issues.
Assign ment 3,4 of arrays done.
rcs,functions implemented.
cvs server set up,with some issues in clients.
Assignment 5 starts.
cvs user created today..having some issues in client
…doing assignment 4..
assignment 5(pointer) till q-14 done but there are some issues in cvs…….
issues in cvs and assignment 5 till q12 and assignment2 till q14 done
pointer assignment till q14 done … and cvs is done but with some issues…..
first two assignement have been completed and practise of make rcs file in shell script
thirad starts
#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 ??
Byte mode implemented for multiple bytes with synchronization.
Nibble mode implemented for multiple bytes with synchronization. but code is not optimized yet.
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
sir
i did five question of second assignment today.