Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)


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

Post New Answer

More C Interview Questions

What character terminates all strings composed of character arrays? 1) 0 2) . 3) END

3 Answers  


There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take turns to remove these eggs from the baskets. On each turn, a player must remove at least one egg, and may remove any number of eggs provided they all belong to the same basket. The player picking the last egg(s) wins the game. If you are allowed to decide who is going to start first, what mathematical function would you use to decide so that you end up on the winning side?

8 Answers   Google,


Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?

0 Answers   Celstream,


Suppose I want to write a function that takes a generic pointer as an argument and I want to simulate passing it by reference. Can I give the formal parameter type void **, and do something like this? void f(void **); double *dp; f((void **)&dp);

1 Answers  


what is a pointer

4 Answers   Bank Of America, TCS,






What are the disadvantages of c language?

0 Answers  


How do you initialize function pointers? Give an example?

3 Answers  


console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above

0 Answers  


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,


Why C language is a procedural language?

0 Answers   Ericsson,


what is const volatile?

2 Answers  


Are there constructors in c?

0 Answers  


Categories