Only Operator which takes integers
Modulus Operator
They are the primitive datatypes in C
double
Multiplication of two matrices is defines by
two dimensional array
Which of the following is a correct format for declaration of function
return-type function-name(argument type);
int *ptr, p;
ptr is a pointer to integer, p is not
Increment Operator in C
++
Output of an arithmetic expression with integers and real numbers is by default -----
integer
The keyword is used to make the array size optional in C language during array declaration
Extern
use a function as a parameter of another function? [Eg: void wow(int func())].
C does not support it
const int *ptr;
You cannot change the value pointed by ptr
==
Equal to operator
If both numerator and denominator of the equation are integers, the result is
Integer
It can store any data-type sequentially
Array
The value obtained in the function is given back to main by using ________ keyword
Return
Pointer to pointer concept available in C
Yes