What is return in c programming?
What is substring in c?
What does sizeof return c?
2. What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value
How to get string length of given string in c?
What is a sequential access file?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
what is call by value and call by reference
Explain can the sizeof operator be used to tell the size of an array passed to a function?
How to write a program to receive an integer & find its octal equivalent by using for loop?
. 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 function prototype?
Implement a function that returns the 5th element from the end in a singly linked list of integers in one pass.