Give basis knowledge of web designing ...
No Answer is Posted For this Question
Be the First to Post Answer
Why use int main instead of void main?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What are c identifiers?
What is the purpose of the fflush() function in C?
c program to input values in a table(using 2D array) and print odd numbers from them
Function shall sum members of given one-dimensional array. However, it should sum only members whose number of ones in the binary representation is higher than defined threshold (e.g. if the threshold is 4, number 255 will be counted and 15 will not) - The array length is arbitrary - output the results to the stdout
In C programming, how do you insert quote characters (‘ and “) into the output screen?
write a program to find lcm and hcf of two numbers??
What are the 4 types of unions?
Explain what is the best way to comment out a section of code that contains comments?
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); }
progrem to generate the following series 1 12 123 1234 12345