Explain how do you declare an array that will hold more than 64kb of data?
No Answer is Posted For this Question
Be the First to Post Answer
Which header file is essential for using strcmp function?
Reverse the part of the number which is present from position i to j. Print the new number. eg: num=789876 i=2 j=5 778986
write a c program that prints all multiples of 3between 1 and 50.
#‎include‬<stdio.h> void main() { int i; for(i=5;0;i++) { printf("%d",i); } }
How can I ensure that integer arithmetic doesnt overflow?
Why can arithmetic operations not be performed on void pointers?
While compiling a c program,graphics header files are not including in my program..eg: <graphics.h>,what may be the problem...is there any environment settings exists.
What is the difference between typedef struct and struct?
how to swap four numbers without using fifth variable?
What is the advantage of c?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
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 5 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.