Archive for the ‘Resources’ Category

  • Important Questions on Inter-Process Communication

    Jan 11, 13 • 22109 Views • Resources1 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

  • Functions in C Language

    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()

  • Questions on Functions in C Language

    Jan 10, 13 • 13674 Views • Resources7 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

  • Interview questions and answers for C language

    Jan 10, 13 • 37823 Views • Resources55 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

  • Interview Questions on Pointer

    Jan 10, 13 • 14626 Views • Resources1 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.