How variables are declared in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is derived datatype in c?
What is NULL pointer?
What is meant by type specifiers?
Is it possible to create recycle bin in mobiles?
. 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.
Why does not use getgh(); and <conio.h> in c language.
write a program to print the one dimensional array.
What is break statement?
a number is perfect if it is equal to the sum of its proper divisor.. 6 is perfect number coz its proper divisors are 1,2 and three.. and 1+2+3=6... a number is deficient if the sum of its proper divisor is less than the number.. sample: 8 is deficient, coz its proper divisors are 1,2 and 4, and 1+2+4=7. abundant number, if the sum of its proper divisor is greater than the number.. sample..12 is abundant coz 1+2+3+4+6=16 which is geater than 12. now write a program that prompts the user for a number, then determines whether the number is perfect,deficient and abundant..
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
can i know the source code for reversing a linked list with out using a temporary variable?
Which function in C can be used to append a string to another string?