Can two or more operators such as
and be combined in a single line of program code?


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

Post New Answer

More C Interview Questions

write a program to find the frequency of a number

4 Answers   Infosys,


can any one tell that i have a variable which is declared as static but i want this variable to be visible to the other files? how?

2 Answers  


What is difference between Structure and Unions?

0 Answers   TISL,


what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);

10 Answers   IBM,


Write a program to print numbers from 1 to 100 without using loop in c?

0 Answers  






main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....

2 Answers  


How will you declare an array of three function pointers where each function receives two ints and returns a float?

0 Answers   TISL,


How is pointer initialized in c?

0 Answers  


What is c preprocessor mean?

0 Answers  


hi send me sample aptitude papers of cts?

0 Answers  


write a programme to convert temperature from farenheit to celcius?

4 Answers   IBM,


What is the difference between new and malloc functions?

0 Answers   InterGraph,


Categories