What is assert and when would I use it?
No Answer is Posted For this Question
Be the First to Post Answer
What's the difference between a linked list and an array?
how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?
How can I call fortran?
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.
Taking an example,differentiate b/w loader and linker ?
Explain two-dimensional array.
How can I remove the trailing spaces from a string?
What is a built-in function in C?
write a program that will print %d in the output screen??
Write a pro-gramme to determine whether the number is even or odd?
which is conditional construct a) if statement b) switch statement c) while/for d) goto
What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }