in C-programming language without using printf statement
can we get output r not ? if yes how and if no also how ?
Answer Posted / shreya jha
it's possible to print something using if and without semicolon(;)
#include<stdio.h>
#include<conio.h>
int main()
{
if(printf("HELLO USER"))
{
}
getch();
return 0;
}
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What are the 4 data types?
what is event driven software and what is procedural driven software?
Are there any problems with performing mathematical operations on different variable types?
What is c language in simple words?
Explain what are reserved words?
Why are all header files not declared in every c program?
about c language
Explain how do I determine whether a character is numeric, alphabetic, and so on?
I have a varargs function which accepts a float parameter?
Write programs for String Reversal & Palindrome check
What is the condition that is applied with ?: Operator?
what is different between auto and local static? why should we use local static?
What is use of #include in c?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
How does placing some code lines between the comment symbol help in debugging the code?