I’m read the document of I.P.C . Implement the questions related to pipe, using with or without fork, Done the assignment of esstablish I.P.C between two process using a fork and exec . Successfully transfer the file discriptor using sprintf … Continue reading
I have compelted MDC project for codelength 4. Earlier it was linear program ,now i modified it with seprate functions for master array, compression and decompression . In this program i read data first from a text file and made … Continue reading
Sucessfully done master array using fileio and malloc. Also find the number of distinct charcater and code length . From :Suresh kumar
Why this shows error in this question?But it shows the result. 1 #include<stdio.h> 2 struct student 3 { 4 int id; 5 char *name; 6 float percentage; 7 }student1,student2,student3; 8 9 int main() 10 { 11 … Continue reading
What is meant by intermediate targets ? and how these are created before final target. What are list of prerequisties?
Completed assignment 1, started second assignment
Q:-int main() { int x=2,y,z; x*=y=z=4; printf(“%d”,x); x=y==z; printf(“%d”,x); x==(y=z) printf(“%d”,x) here what is the value of x in last printf statement?