-
Jan 11, 13 •
22109 Views •
Resources •
Top Coaching Institute •
1 Comment
1) What is Inter-process communication? Ans: Exchange of data between two or more separate, independent processes/threads. Operating systems provide facilities/resources for inter-process communications (IPC), such as message queues, semaphores, and shared
-
Jan 11, 13 •
3202 Views •
Resources •
•
7 Comments
Q 1. What is a static function ? Ans 1: A static function is a function whose scope is limited to the current source file. Scope refers to the visibility of a function or variable. Q 2. Is it possible to execute code even after the program exits the main()
-
Jan 10, 13 •
13674 Views •
Resources •
saarika Singh •
7 Comments
A Function is a combined block of instructions written to perform a specific task. A function takes a value and after performing requisite processing, it returns the value in the program. Lets have a look over the different questions on Functions in C
-
Jan 10, 13 •
37823 Views •
Resources •
pallavi dubey •
55 Comments
List of Interview questions and answers for C language : The C programming language is mother of all programming languages. It is very simple and easy to learn.In interview there are lots of question asked from this domain so prepration of the topic is very
-
Jan 10, 13 •
14626 Views •
Resources •
Top Coaching Institute •
1 Comment
Q1. What is a Pointer ? Ans. A pointer is a variable that stores the address of another variable in C language. It is basically a data type defined by the user to create special variables to hold the address of the main variables like int, float, char etc.