Explain argument and its types.
No Answer is Posted For this Question
Be the First to Post Answer
In C programming, what command or code can be used to determine if a number of odd or even?
what is the difference between malloc() and calloc() function?
how to use enum datatype?Please explain me?
What does static variable mean in c?
If we give two names then this displays the connection between the two people. It is nothing but flames game
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); }
What are the different types of control structures?
What are file streams?
What is c language & why it is used?
What will be your course of action for a push operation?
What are the main characteristics of c language describe the structure of ac program?
Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?