in C-programming language without using printf statement
can we get output r not ? if yes how and if no also how ?
Answer Posted / murali
it is possible . with using if condition and library
function
| Is This Answer Correct ? | 16 Yes | 9 No |
Post New Answer View All Answers
What does *p++ do?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
What is masking?
Explain the difference between ++u and u++?
What does void main return?
Write a program to print numbers from 1 to 100 without using loop in c?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
Write a program to print “hello world” without using semicolon?
What is calloc()?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
Why do we use namespace feature?
What is const and volatile in c?
Explain how can type-insensitive macros be created?
What is the difference between text and binary i/o?
What library is sizeof in c?