What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?


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

Post New Answer

More C Interview Questions

Is it better to use a macro or a function?

0 Answers  


#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

0 Answers   Wilco,


What is c programming structure?

0 Answers  


write a program to find lcm and hcf of two numbers??

1 Answers  


What is difference between union and structure in c?

0 Answers  






What is double pointer in c?

0 Answers  


write a program to display reverse of a number using for loop?

14 Answers  


Explain how can I remove the trailing spaces from a string?

0 Answers  


i have to apply for rbi before that i need to know the the syllabus for the entrance questions. whethet it may be aps or techinical

0 Answers  


write a c programme for add of two numbers with out use of arthematic operators

2 Answers  


What is the output of the below program and how it is? void main() { static int var=5; printf("%d",var--); if(var) main(); }

8 Answers   MindFire, TCS, Tech Mahindra,


Why can’t constant values be used to define an array’s initial size?

0 Answers  


Categories