Start Discovering Solved Questions and Your Course Assignments
TextBooks Included
Solved Assignments
Asked Questions
Answered Questions
define the system oriented data filessystem-oriented data files are further closely related to the computers operating system than stream- oriented
define the stream oriented data filesthere are two dissimilar types of data files called stream-oriented or standard data files and system-oriented
write a program that illustrate union declarationa c program encloses the following union declarationunion id char color12 int size shirt blouseat
explain the defination and declaration of uniongenerally in terms the composition of a union may be defined as be asunion tag member 1member 2
explain what are unionsthe unions like as structures contain members whose individual data types may perhaps differ from one another though the
q what are user defined data typesc supports an extraordinary feature known as type definition that permits users to define an identifier that would
write a program to illustrate array of structuresstruct customer int id char name15struct customer c100 in the above instance the array of structures
define array of structuresan array of structures is an assortment of the same data types which are declared as structures it is useful to store large
write a program to illustrate passing structure to function include ltstdiohgt struct customerint idchar name15 void funcstructstruct customer main
define passing structure to a functiona structure is able to be passed as a function argument identical to any other variable if we are merely
define the processing of a structure the members of structure are typically processed individually as separate entities so we must be able to access
how to define a structurestructure declarations are rather more complicated than array declarations ever since a structure must be defined in terms
what is unionintimately associated with the structure is the union which as well contains multiple members unlike a structure but the members of a
what is structure an array is a data structure whose elements are all of the similar data type the structure is a data structure whose individual
explain the working of strcmp and strcat functionstrcmp this function is meant to use to compare two stringsthe strcmp function acknowledge two
explain the working of strcpy functionstrcpy this function is meant to use to copy one string to anotherthe strcpy function as well accepts two
explain some string oriented library functionsto make simpler string processing we can use special string oriented library functions mainly the c
write a program to illustrate array with stringsmain static char namedevdas int i i0 whilenamei0 printfcnamei ii1 in the name array and the zero
explain the working of array with stringsa string is defined in c language as an array of characters a null character lsquo0 is automatically added
define the multi dimensional arraysconsequently far we have considered arrays with only one dimension it is as well possible to define an array which
write a program to get the largest element in an array using function include ltstdiohgtint largestint bintmain int lara512236405 larlargestan
define how passing arrays to a functiona complete array can be passed to a function as an argument the manner in which the array is passed be
describe processing an arraythe single operations which involve complete arrays are not permitted in c language therefore if a and b are similar
write a program to illustrate arrayint x100 char text80 float temp30 static int marks5we are able to use symbolic constants instead of expression the
q how can define an arrayan array is defined in much the alike manner as ordinary variables except that every array name must be accompanied by a