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 |
union { char ch[10]; short s; }test; test.s = 0xabcd; main() { printf("%d",ch[10]); }
logic for x=y^n
What is the difference between near, far and huge pointers?
What are dynamically linked and statically linked libraries?
What is advantage of pointer in c?
What are the rules for identifiers in c?
WRITE A PROGRAM TO PRINT THE FOLLOWING OUTPUTS USING FOR LOOPS. A) * B) ***** *** * * ***** * * *****
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }
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.
Every time i run a c-code in editor, getting some runtime error and editor is disposing, even after reinstalling the software what may be the problem?
What is the purpose of sprintf() function?
Can we declare a function inside a function in c?