C program to find all possible outcomes of a dice?


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

Post New Answer

More C Interview Questions

what is void pointer?

2 Answers  


i want to make a program in which we use input having four digits(4321) and get output its reciprocal(1234).

1 Answers  


How to avoid structure padding in C?

8 Answers   Tech Mahindra,


write program on arrays

3 Answers   GE, Polycab,


What is the benefit of using an enum rather than a #define constant?

0 Answers  






main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }

1 Answers  


my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?

0 Answers  


How can I sort more data than will fit in memory?

0 Answers  


write a program for even numbers?

19 Answers   TCS,


Here is alphabets : abcdefgh 1) how to reverse. as hgfedcba 2) after reversal, how to group them in a pair hg fe dc ba.

2 Answers  


What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā€œ%d\nā€,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none

2 Answers  


Can we include one C program into another C program if yes how?

7 Answers   Infosys,


Categories