what is the role you expect in software industry?
Answer Posted / ragu
to done my job efficiently.
| Is This Answer Correct ? | 5 Yes | 3 No |
Post New Answer View All Answers
Describe static function with its usage?
What is c language and why we use it?
What is the difference between int main and void main in c?
What is a method in c?
How are variables declared in c?
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!+....
Explain how do you convert strings to numbers in c?
Explain About fork()?
What is volatile c?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
What is dynamic variable in c?
What is function pointer c?
Linked lists -- can you tell me how to check whether a linked list is circular?
Explain the difference between structs and unions in c?
What is the significance of scope resolution operator?