Why C language is a procedural language?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of a semicolon (;) at the end of every program statement?
Explain how can you be sure that a program follows the ansi c standard?
What is sizeof array?
How do you define a function?
Illustrate it summing the series 2+4+6+......to n terms using (i) while loop (ii) do-while loop
What is malloc and calloc?
Which is an example of a structural homology?
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
What is c definition?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
write a program to remove occurrences the word from entered text?
where do we use structure pointer?