What is c definition?
No Answer is Posted For this Question
Be the First to Post Answer
How does placing some code lines between the comment symbol help in debugging the code?
What is the hardest programming language?
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
Can the “if” function be used in comparing strings?
Can you return null in c?
Is it possible to pass an entire structure to functions?
What are bitwise shift operators in c programming?
Which weighs more, a gram of feathers or a gram of gold?
what is the basis for selection of arrays or pointers as data structure in a program
what is the difference between unix os and linux os
name the language for writing c compiler?
2.Given the short c program that follows a. make a list of the memory variables in this program b.which lines of code contain operations that change the contents of memory? what are those operations? Void main( void) { Double base; Double height; Double area; Printf(“enter base and height of triangle :”); Scanf(“%lg”, &base); Scanf(“%lg”, &height); Area=base*height/2.0; Printf(“the area of the triangle is %g \n”,area); }