when to use : in c program?

Answers were Sorted based on User's Feedback



when to use : in c program?..

Answer / mounika

In switch case we use : In c

Is This Answer Correct ?    4 Yes 1 No

when to use : in c program?..

Answer / deepika shinde

In bit field we use :

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More C Interview Questions

Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }

3 Answers   IBM,


difference between spiral and waterfall model

1 Answers  


# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }

5 Answers  


enum day = { jan = 1 ,feb=4, april, may} what is the value of may? a)4 b)5 c)6 d)11 e)none of the above

8 Answers   HCL, Wipro,


Explain how can you restore a redirected standard stream?

0 Answers  






Can you think of a way when a program crashed before reaching main? If yes how?

2 Answers  


Difference between Shallow copy and Deep copy?

0 Answers  


the data type used for unlimited value in c and how to do this program

1 Answers  


What is a static function in c?

0 Answers  


Why does the call char scanf work?

0 Answers  


How to reverse a linked list

1 Answers   Aricent, Fidelity, IBM, TCS,


what is difference between null and nul in c language

2 Answers  


Categories