What is strcpy() function?
No Answer is Posted For this Question
Be the First to Post Answer
The difference between printf and fprintf is ?
Who developed c language?
What is string function c?
What is meant by type casting?
Explain union.
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.
how can you print&scan anything using just one character? :) HINT: printf,scanf similer
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
How do we swap or interchange any 2 numbers without using Temporary variable...Anybody can pls answer it.. Thanks in Advance
What is the difference between null pointer and wild pointer?
What is a shell structure examples?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?