Explain how can you tell whether two strings are the same?


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

Post New Answer

More C Interview Questions

What is #include called?

0 Answers  


What is use of null pointer in c?

0 Answers  


What does 4d mean in c?

0 Answers  


what is pointer ? what is the use of pointer?

6 Answers   Infosys,


What are the 5 types of inheritance in c ++?

0 Answers  






What is the symbol indicated the c-preprocessor?

0 Answers  


What will be the result of the following program? main() { char p[]="String"; int x=0; if(p=="String") { printf("Pass 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } else { printf("Fail 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } } a) Pass 1, Pass 2 b) Fail 1, Fail 2 c) Pass 1, Fail 2 d) Fail 1, Pass 2 e) syntax error during compilation

10 Answers   IBM,


Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.

0 Answers   Aspiring Minds,


program for swapping two strings by using pointers in c language

1 Answers  


What does struct node * mean?

0 Answers  


What should malloc() do? Return a null pointer or a pointer to 0 bytes?

0 Answers  


write an algorithm which can find the largest number among the given list using binary search ............... this was asked in the interview

2 Answers   Satyam, UNIS, Wipro,


Categories