What are the types of unary operators?


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

Post New Answer

More C Interview Questions

Difference between pass by reference and pass by value?

0 Answers   TCS, TISL,


char S; char S[6]= " HELLO"; printf("%s ",S[6]); output of the above program ? (0, ASCII 0, I,unpredictable)

7 Answers   Mascot,


Where we use clrscr in c?

0 Answers  


Why does everyone say not to use gets?

0 Answers  


void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }

5 Answers  






What does %c mean 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  


Are local variables initialized to zero by default in c?

0 Answers  


Write a program which calculate sum of several number and input it into an array. Then, the sum of all the number in the array is calculated.

2 Answers  


Is null a keyword in c?

0 Answers  


What does double pointer mean in c?

0 Answers  


create an SINGLE LINKED LISTS and reverse the data in the lists completely

3 Answers  


Categories