What is difference between array and pointer in c?


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

Post New Answer

More C Interview Questions

How is a pointer variable declared?

0 Answers  


What is masking?

0 Answers  


#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?

4 Answers   Ramco,


int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain me output????

1 Answers  


Is it better to bitshift a value than to multiply by 2?

0 Answers  






Example of friendly function in c++

2 Answers  


Function calling procedures? and their differences? Why should one go for Call by Reference?

0 Answers   ADP,


What is the main difference between calloc () and malloc ()?

0 Answers  


write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?

0 Answers   Wipro,


how to reverse string "Hello World" by using pointers only. Without any temp var

1 Answers  


what is the difference between getch() and getchar()?

10 Answers   Huawei, Infosys,


What is static volatile in c?

0 Answers  


Categories