What does printf does?
No Answer is Posted For this Question
Be the First to Post Answer
What is Your Name :)
how many key words availabel in c a) 28 b) 31 c) 32
program to find the magic square
write a program in C to swap two variables
Which command is more efficient? *(ptr+1) or ptr[1]
WHAT IS FLOAT?
How can I open a file so that other programs can update it at the same time?
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.
matrix multiplication fails introspect the causes for its failure and write down the possible reasons for its failurein c language.
print the following using nested for loop. 5 4 3 2 1 1 2 3 4 3 2 1 1 2 1 2 1 1 2 3 4 3 2 1 1 2 3 4 5
Does c have circular shift operators?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??