Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?


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

Post New Answer

More C Interview Questions

What is a structure and why it is used?

0 Answers   Hexaware,


How can variables be characterized?

0 Answers  


char p="data"; printf(p);

2 Answers  


Can anyone help me with this please? Need to print the below values.. Thanks 1 1 2 1 2 3 1 2 3 4

3 Answers  


how can you print&scan anything using just one character? :) HINT: printf,scanf similer

2 Answers  






Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }

3 Answers   IBM,


How many types of sorting are there in c?

0 Answers  


Explain low-order bytes.

0 Answers  


How does placing some code lines between the comment symbol help in debugging the code?

0 Answers  


how can i get this by using for loop? * ** * **** * ******

3 Answers   Excel,


What is the use of #include in c?

0 Answers  


What does the file stdio.h contain?

0 Answers  


Categories