Tag: assignment

  • Fluid Mechanics Assignment – S4 Civil Engineering – CUSAT 2011

    We have added the Fluid mechanics Assignment given to Civil Engineering S4 Students. please help Yourself and download the .jpg Fil.Thanks to Collin James and Nadir Najmal Hussain for the caps.These images are uploaded in Picasa and may be lower resolution than the original Pics. If you want High resolution images please download the Single…

  • Ultrasonics – First Year Physics Assignment

    FIRST YEAR ASSIGNMENTS The Ultrasonics Assignments will be given to the First year students By Physics Faculty. Its Certainly a full chapter But Assignments will save the Time. so Here in CX we are Providing the Chapter of ULTRASONICS which will be the Assignments. Circuit Diagrams will also present in this.The file is .pdf format.so…

  • Computer assignment – String Manipulation Program With And Without Library Function

    Que: Write A Menu driven C String Manipulation Program With And Without Library Function ?? #include // Library Function which can be used for the String Mnpltn #include #include void main() { int ch; clrscr(); printf("MAIN MENU"); // Main Menu printf(" nn1. String Manipulation With Library Functionnn2. String Manipulation Without Library Functionnn Enter the Choice : "); scanf("%d",&ch;); if(ch==1) { char a[20]; //With Library Function int i; clrscr(); gets(a); i=0; while(a[i]!=’’) i++; //counts no of chars till encountering null char printf(sring length=%d,i); } else if(ch==2) { // Without Library Function int length; char cstring[20]; printf("nnEnter the Charcter :") gets(cstring); for (length = 0; cString[length]; ++length); //length now holds the length of cString printf("Length = ",length) } else { printf("nWrong option"); getch(); } ///////// Pls Do Comment…

  • C programming Assignment – S1 and S2 2010

    C programming Assignment The Questions was Write a Short Note on UNION Preprocessor Directives Command Line Argument Typedef Statement UNION ————- A union is like a structure in which all of the members are stored at the same address. Only one member can be in a union at one time. The union data type was…