WAP that prints the number from 1 to 100. but for multiplies of three print "XXX" instead of the number and for the multiplies of five print "YYY" . for number which are multiplies of both three and five print "ZZZ"
3 6006what is the difference between global variable & static variable declared out side all the function in the file.
2 5871Hai friends im a i year student. i want to develop my knowledge in the field of TSR in c. How I'm Improve ?
2 5009While compiling a c program,graphics header files are not
including in my program..eg:
write a program to fined second smallest and largest element in a given series of elements (without sorting)
9 19836
Explain bit masking in c?
What is function prototype in c language?
Explain what is the heap?
What is header file definition?
difference between Low, Middle, High Level languages in c ?
write a c program to calculate sum of digits till it reduces to a single digit using recursion
What is #define in c?
What is the difference between call by value and call by reference in c?
What are the advantages of using new operator as compared to the function malloc ()?
How do you construct an increment statement or decrement statement in C?
The program will first compute the tax you owe based on your income. User is prompted to enter income. Program will compute the total amount of tax owed based on the following: Income Tax 0 - $45,000 = 0.15 x income $45,001 - $90,000 = 6750 + 0.20 x (income – 45000) $90,001 - $140,000 = 15750 + 0.26 x (income – 90000) $140,001 - $200,000 = 28750 + 0.29 x (income – 140000) Greater than $200,000 = 46150 + 0.33 x (income – 200000) Dollar amounts should be in dollars and cents (float point numbers with two decimals shown). Tax is displayed on the screen.
Can you please explain the difference between malloc() and calloc() function?
What is difference between far and near pointers?
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
What is the Purpose of 'extern' keyword in a function declaration?