1. Question:Define Operator, Operand, and Expression in 'C'? 

    Answer
    Operators are symbols which take one or more operands or expressions and perform arithmetic or logical computations.
    Operands are variables or expressions which are used in operators to evaluate the expression.
    Combination of operands and operators form an expression.






    1. Report
  2. Question:What is use of void data type? 

    Answer
    Void is an empty data type normally used as a return type in C/C++, C#, Java functions/methods to declare that no value will be return by the function.
    The another used of void is to declare the pointer in C/C++ where It is not sure what data type is addressed by the pointer.






    1. Report
  3. Question:four type of scope in c: 

    Answer
    Block scope.
    Function scope.
    File scope.
    Program scope.






    1. Report
  4. Question:what is nested structure? 

    Answer
    A structure is a collection of one or more variables, possibly of different data types, grouped together under a single name for convenient handling. Structures can contain other structures as members; in other words, structures can nest.






    1. Report
  5. Question:What is prototype of printf function? 

    Answer
    Prototype of printf function is:
     int printf( const char *format ,…)






    1. Report
Copyright © 2025. Powered by Intellect Software Ltd