what are you see during placement time in the student.
No Answer is Posted For this Question
Be the First to Post Answer
c program to arrange digits in a no in ascending and descending order
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
Why is a semicolon (;) put at the end of every program statement?
Do string constants represent numerical values?
Why static variable is used in c?
what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these
write a c program to find largest of three numbers using simple if only for one time.
Write a program to find given number is even or odd without using any control statement.
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.
Explain null pointer.
What is quick sort in c?
Why c is called procedure oriented language?