What is scope of variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
How does variable declaration affect memory?
Is null a keyword in c?
write a program to display all prime numbers
Why is structure padding done in c?
State two uses of pointers in C?
What’s the special use of UNIONS?
What is the difference between variable declaration and variable definition in c?
Differentiate between functions getch() and getche().
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); }
who invented c
Explain how can I make sure that my program is the only one accessing a file?
What is %d called in c?