Explain can you assign a different address to an array tag?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

write a program for egyptian fractions in c?

1 Answers   Satyam,


Write a program to add a given duration with time(24hrs format)

1 Answers   Protech,


Why doesn't the code "a[i] = i++;" work?

4 Answers  


void main() { static int i = 5; if(--i) { main(); printf("%d ",i); } } what would be output of the above program and justify your answer? }

5 Answers   C DAC, CDAC, Infosys, Wipro,


Explain the process of converting a Tree into a Binary Tree.

0 Answers   Ignou,






write a program to find the sum of the array elements in c language?

24 Answers   ICT, Infosys, Wipro,


What is macro?

5 Answers   IBM,


what is the difference between static variable and register variable?

3 Answers  


2.Given the short c program that follows a. make a list of the memory variables in this program b.which lines of code contain operations that change the contents of memory? what are those operations? Void main( void) { Double base; Double height; Double area; Printf(“enter base and height of triangle :”); Scanf(“%lg”, &base); Scanf(“%lg”, &height); Area=base*height/2.0; Printf(“the area of the triangle is %g \n”,area); }

1 Answers   Wipro,


what is the most appropriate way to write a multi-statement macro?

1 Answers  


What are the advantages and disadvantages of pointers?

0 Answers  


why array index always starts from zero??

4 Answers   TCS,


Categories