what is meant by the "equivalence of pointers and arrays" in
C?
Answers were Sorted based on User's Feedback
Answer / sameer
name of array(without subscript) points to the first
location of array.
eg. a[10].
a points to first location of array.
| Is This Answer Correct ? | 1 Yes | 3 No |
# define prod(a,b)=a*b main() { int x=2; int y=3; printf("%d",prod(x+2,y-10)); } the output of the program is a.8 b.6 c.7 d.none
I heard that you have to include stdio.h before calling printf. Why?
what is difference between strcmp & palindrome?
How to reverse a string using a recursive function, with swapping?
get any number as input except 1 and the output will be 1.without using operators,expressions,array,structure.don't print 1 in printf statement
`write a program to display the recomended action depends on a color of trafic light using nested if statments
print 1-50 with two loop & two print Statement
why return type of main is not necessary in linux
What is the use of function in c?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
how to use enum datatype?Please explain me?
How to set file pointer to beginning c?