Answer Posted / saroj
C is a high level
language
| Is This Answer Correct ? | 13 Yes | 34 No |
Post New Answer View All Answers
How do you sort filenames in a directory?
What is the stack in c?
What are the 32 keywords in c?
Explain what are compound statements?
What is a nested loop?
What is the symbol indicated the c-preprocessor?
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
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!+....
How macro execution is faster than function ?
Define the scope of static variables.
Differentiate between calloc and malloc.
What are variables c?
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
What is a program flowchart?
What is main () in c language?