answersLogoWhite

0

As you can access any other variable.

Plus you can access the fields of the structure, with the dot operator.

Plus there is the arrow operator to access the fields of a structure addressed by a pointer.

Eg:

struct timeb tb1, tb2, *ptb;

tb1= tb2;

ptb= &tb1;

tb2= *ptb;

tb1.time= tb2.time;

tb2.time= (*ptb).time

ptb->millitm= (&tb2)->millitm;

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

What is structure and union?

Structure is a query that is used in language c++


How do you create modules in c language?

by using structure in c.........


Why is c called a structured language?

a synonym for structure language in "Comb-sturctured" languages. C in comb.


What data structure is used to represent graphs in c language?

A tree.


What is the program language c?

C is a pop language. C is a case sensetive language. C is motherof all language. C is block structure language. C is a high level language. C is advace of B language. C developed by D.richties in 1972 at AT & T Bell lab in USA. Sachin Bhardwaj 986854722 skbmca@gmail.com


What programming language was Ms Access written in?

Microsoft Access was developed on C#. Source: MSDN (Microsoft Developer Network)


What is the difference between c and c plus plus extension?

c language is the structure oriented language and c does not follows the object oriented paradigms . c++ obeys the all object oriented language characteristics ========== C++ is a set of extensions to the C language to allow some (not all) principles of object-oriented programming to be used. Originally, C++ was a front end pre-processor for C and C++ compilers will translate C language functions.


What is basic structure of file handling in c language?

open, read/write, close


What the difference between c and c plus plus?

The fundamental difference is that in C++ object-oriented programming (OOP) was added. C is a procedural language (that means. top-down structure design), where as C++, which is an extension of C itself, is an object oriented language.


Is c a low level language?

C language is a middle level language, a middle language is one which somehow allows you to access your computer memory directly. Where as Java and C# are completely highlevel language as they dont allow you to directly access your computer memory, Assembly Language is said to be the low level language as it allow the the direct access of memory. you can read more on C language here: http://thetechnofreaks.com/2011/08/23/the-basics-welcome-to-the-world-of-programming/ Actually, there are no 'middle level languages', machine code and Assembly is low level, everything else is high level. And of course you cannot break out from your virtual memory space using C (or any other language). It is called 'protected mode' for a reason.


Can you access c language in dos and unix?

You can write, compile and execute C-programs in both DOS and Unix, if that's what you meant.


Example of procedural programming language and object oriented programming language?

example of procedural programming are those programming language that have structure e.g basic,fortran,c++,c and pascal e.t.c