Discuss about structures and functions With example program oneloops 12:03 Add Comment LAB PROGRAMS, QUESTION WITH ANSWER, STUDY MATERIALS, TEACHING NOTES A structure is a bit more complicated than a single value, so it is not surprising that ancient C implementations do not allow a structure... Read More
brief explain about structure pointers with With example program oneloops 12:00 Add Comment LAB PROGRAMS, QUESTION WITH ANSWER, STUDY MATERIALS, TEACHING NOTES process the structure using a structure pointer Program struct student \\ A { char name[30]; \\ B float marks; \... Read More
With example program written in C language describe the term Union. oneloops 11:59 Add Comment LAB PROGRAMS, QUESTION WITH ANSWER, STUDY MATERIALS, TEACHING NOTES Comparison of Two Strings"strcmp" compares the string "s1" to the string "s2". Both strings must be terminate... Read More
Explain about Initializing Structures with example. oneloops 11:57 Add Comment QUESTION WITH ANSWER, STUDY MATERIALS, TEACHING NOTES if the structure object has automatic storage class, then its members have indeterminate initial values. example. Song_t mySong = { ... Read More