What’s a signal? Explain what do I use signals for?
No Answer is Posted For this Question
Be the First to Post Answer
What is dynamic memory allocation?
what are the compilation steps? ( i want inside the compiler )
fn f(x) { if(x<=0) return; else f(x-1)+x; }
Sir i need notes for structure,functions,pointers in c language can you help me please
# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }
diff. between *p and **p
How can I remove the leading spaces from a string?
What is new line escape sequence?
what are the stages of compilation
How do I send escape sequences to control a terminal or other device?
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.
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We Are Student “ Output: "We Are Student"