What is scanf () in c?
No Answer is Posted For this Question
Be the First to Post Answer
Why is conio.h not required when we save a file as .c and use clrscr() or getch() ?
Explain what is #line used for?
find the minimum of three values inputted by the user
Who is the main contributor in designing the c language after dennis ritchie?
Why do u use # before include in a C Progam?
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); }
How does variable declaration affect memory?
What is #error and use of it?
Write a program to print ASCII code for a given digit.
What does the error 'Null Pointer Assignment' mean and what causes this error?
Under what circumstances does a name clash occur?
What is the correct code to have following output in c using nested for loop?