How many types of operators are there in c?
. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none
What is cohesion in c?
Write a C++ program to give the number of days in each month according to what the user entered. example: the user enters June the program must count number of days from January up to June
Is linux written in c?
What is a good way to implement complex numbers in c?
List out few of the applications that make use of Multilinked Structures?
What is #include conio h?
Explain how can you determine the size of an allocated portion of memory?
Describe static function with its usage?
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
why program counter is 16 bit?