Is it possible to pass an entire structure to functions?
No Answer is Posted For this Question
Be the First to Post Answer
25. It takes five minutes to pass a rumour from one person to two other persons. The tree of rumour continues. Find how many minutes does it take spread the rumour to 768 persons. ?
11 Answers CTS, TCS,
What is clrscr ()?
How can I copy just a portion of a string?
How do I send escape sequences to control a terminal or other device?
what is the hexidecimal number of 4100?
Explain the process of converting a Tree into a Binary Tree.
What is the difference between struct and union in C?
What is external variable in c?
What is the -> in c?
how to find the size of the data type like int,float without using the sizeof operator?
write a c program to find largest of three numbers using simple if only for one time.
what is the output of the below code? main( ) { printf ( "\nOnly stupids use C?" ) ; display( ) ; } display( ) { printf ( "\nFools too use C!" ) ; main( ) ; }