What is wrong with this code such that it doesnt produce
the input reversed?
#include
Ca some one please help me with aC code to allow user enter numbers from 1 to 20 without repeating and prnt the sum of those numbers thnx
4 5724Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
2239You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
2344
Tell me when is a void pointer used?
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
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.
What are dangling pointers? How are dangling pointers different from memory leaks?
Why can arithmetic operations not be performed on void pointers?
What is the return type of sizeof?
Tell us two differences between new () and malloc ()?
What is LINKED LIST? How can you access the last element in a linked list?
What are c preprocessors?
What are the back slash character constants or escape sequence charactersavailable in c?
Why ca not I do something like this?
Explain how can you restore a redirected standard stream?
What are identifiers and keywords in c?
Why can’t constant values be used to define an array’s initial size?
How do I read the arrow keys? What about function keys?