do you think its fraud or original company?
No Answer is Posted For this Question
Be the First to Post Answer
What is a void pointer? When is a void pointer used?
Where in memory are my variables stored?
How the processor registers can be used in C ?
Is c is a low level language?
write a program to arrange the contents of a 1D array in ascending order
Differentiate between calloc and malloc.
main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Find the Outputs?
write the program to find multiplication of 2-D matrix??????????
What is the difference between %d and %i?
define string ?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }