write a program that will print %d in the output screen??
Answer Posted / mizanur
int main()
{
printf("%%d");
return 0;
}
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What is data structure in c language?
What is the difference between abs() and fabs() functions?
How are Structure passing and returning implemented by the complier?
Do pointers store the address of value or the actual value of a variable?
What is call by value in c?
Can we access array using pointer in c language?
What are the uses of null pointers?
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
using only #include
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
If the size of int data type is two bytes, what is the range of signed int data type?
What is use of pointer?
What are the advantages of using new operator as compared to the function malloc ()?
Is null valid for pointers to functions?
What do you understand by friend-functions? How are they used?