Please write the area of a RIGHT ANGLED TRIANGLE.
Answer / aswinisekaran
Area of right angled triangle is 1/2xlengthxwidth
| Is This Answer Correct ? | 4 Yes | 0 No |
Table of Sudoku n*n
How is null defined in c?
When should volatile modifier be used?
What is c system32 taskhostw exe?
What is 1f in c?
Is it possible to execute code even after the program exits the main() function?
Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error
what is unsigened char and what is the difference from char
How do you define CONSTANT in C?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
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
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply