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
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
Explain Basic concepts of C language?
Where register variables are stored in c?
How many loops are there in c?
What are bitwise shift operators in c programming?
What is a c token and types of c tokens?
regarding pointers concept
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
Is it acceptable to declare/define a variable in a c header?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
Ow can I insert or delete a line (or record) in the middle of a file?
Is there a way to jump out of a function or functions?
write a c program for swapping two strings using pointer
What are examples of structures?