define string ?
No Answer is Posted For this Question
Be the First to Post Answer
How does #define work?
How can you find the day of the week given the date?
what is link list?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
What is difference between && and & in c?
What is the difference between arrays and pointers?
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.
What is extern c used for?
How can I write a function analogous to scanf?
What are header files in c programming?
Why do some versions of toupper act strangely if given an upper-case letter?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)