What are the parts of c program?
No Answer is Posted For this Question
Be the First to Post Answer
. A database table called PERSON contains the fields NAME, BASIC and HRA. Write a computer program to print a report which employee name and total salary for those employees whose total salary is more than 10,000. Total Salary = BASIC + HRA. At the end, the program should also print the total number of employees whose total salary is more than 10,000.
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
Why the use of alloca() is discouraged?
how we can make 3d venturing graphics on outer interface
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database
2 Answers TCS, Unisys, Webyog,
What is the difference between char a[] = "string"; and char *p = "string"; ?
14 Answers Adobe, Honeywell, TCS,
will the program compile? int i; scanf(“%d”,i); printf(“%d”,i);
what is the use of ‘auto’ keyword?
When should a type cast be used?
What is difference between Structure and Unions?
What is the difference between malloc() and realloc()?
Why can arithmetic operations not be performed on void pointers?