Do you have any idea how to compare array with pointer in c?


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

Post New Answer

More C Interview Questions

What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?

0 Answers  


What are identifiers and keywords in c?

0 Answers  


we have to use realloc only after malloc or calloc ? or we can use initially with out depending on whether we are using malloc or calloc in our program ?

2 Answers  


Why & is used in c?

0 Answers  


Why is c called a mid-level programming language?

0 Answers  






what is the purpose of the following code, and is there any problem with the code? void fn(long* p1, long* p2) { register int x = *p1; register int y = *p2; x ^= y; y ^= x; x ^= y; *p1 = x; *p2 = y; }

1 Answers   Google,


Explain the difference between getch() and getche() in c?

0 Answers  


What does != Mean in c?

0 Answers  


how do you execute a c program in unix.

0 Answers  


How can I ensure that integer arithmetic doesnt overflow?

0 Answers  


How can I get the current date or time of day in a c program?

0 Answers  


main() { int i=5; printf("%d%d%d%d",i++,i--,i); }

10 Answers  


Categories