Answer Posted / sumankumar
printf("%%d");
| Is This Answer Correct ? | 11 Yes | 3 No |
Post New Answer View All Answers
i want to switch my career from quailty assurance engineering to development kindly guide me from which programming language its better for me to start plz refer some courses or certifications too i have an experience of 1.5 yrs in QA field.Kindly guide me
Here is a good puzzle: how do you write a program which produces its own source code as output?
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
Can you assign a different address to an array tag?
What is the purpose of 'register' keyword in c language?
Where local variables are stored in c?
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.
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
Explain what is wrong with this program statement?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What are examples of structures?
How do you initialize pointer variables?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
Differentiate between null and void pointers.
Can we assign integer value to char in c?