C program to find all possible outcomes of a dice?
No Answer is Posted For this Question
Be the First to Post Answer
A program to write a number of letters and numbers, such as counting and display
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }
explain how do you use macro?
What do you mean by a sequential access file?
please give me answer with details #include<stdio.h> main() { int i=1; i=(++i)*(++i)*(++i); printf("%d",i); getch(); }
Explain what is the use of a semicolon (;) at the end of every program statement?
How can I prevent other programmers from violating encapsulation by seeing the private parts of my class?
what is the output of the following program? #include<stdio.h> void main() { int x=4,y=3,z; z=x-- -y; printf("\n%d %d %d",x,y,z); }
Explain the advantages and disadvantages of macros.
Why array starts with index 0
Can we declare function inside main?
a 'c' program to tell that the set of three coordinates lie on a same line