Answer Posted / reddy
printf("%d");
| Is This Answer Correct ? | 11 Yes | 30 No |
Post New Answer View All Answers
What is the difference between formatted&unformatted i/o functions?
How are portions of a program disabled in demo versions?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
Can a variable be both const and volatile?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
What do header files do?
Explain what is wrong with this program statement?
What is the difference between near, far and huge pointers?
What is use of #include in c?
What are the advantages of union?
Explain the use of keyword 'register' with respect to variables.
Why is this loop always executing once?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
What are the types of pointers in c?