. 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
Answer Posted / gagan
answer is 3
bcz b[0]=6 so b[-1]=3
| Is This Answer Correct ? | 23 Yes | 6 No |
Post New Answer View All Answers
What is the data segment that is followed by c?
What is call by value in c?
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
What is getch?
Difference between strcpy() and memcpy() function?
Explain 'bit masking'?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
In C, What is the #line used for?
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
What is the use of typedef in c?
What is int main () in c?
What is sorting in c plus plus?
Is main an identifier in c?