Why do we use & in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between the local variable and global variable in c?
What is the use of pragma in embedded 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.
How can I do serial ("comm") port I/O?
Explain what is the benefit of using an enum rather than a #define constant?
using for loop sum 2 number of any 4 digit number in c language
What does %c do in c?
In c language can we compile a program without main() function?
how many errors in c explain deply
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
what is the use of call back function in c?tell me with example
can we write a program in c for printf and scanf without using header file stdio.h