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 does 3 periods mean in texting?

0 Answers  


Why calloc is better than malloc?

0 Answers  


Can a local variable be volatile in c?

0 Answers  


What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }

2 Answers  


What is the use of the #include directive?

3 Answers  


What are reserved words?

0 Answers  


Go through the following code sinippet char a[20]; a="Hello Orcale Test"; will this compile?

4 Answers   Oracle,


Who developed c language and when?

0 Answers  


What is external and internal variables What is dynamic memory allocation what is storage classes in C

3 Answers  


11. Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage

7 Answers   Accenture,


What is the difference between NULL and NUL?

0 Answers   Aspire, Infogain,


How can a string be converted to a number?

0 Answers  


Categories