What is operator precedence?


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

Post New Answer

More C Interview Questions

What is pass by reference in c?

0 Answers  


Write program to remove duplicate in an array?

0 Answers  


What is #error and use of it?

0 Answers  


A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference

0 Answers  


what r the cpu registers r ther?

1 Answers  






How many data structures are there in c?

0 Answers  


write a program to print largest number of each row of a 2D array

0 Answers  


Explain what is #line used for?

0 Answers  


struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer

0 Answers  


What are the string functions? List some string functions available in c.

0 Answers  


write a program without using main function?

2 Answers   TCS,


main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above

6 Answers  


Categories