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 advantages of c language?
What is difference between structure and union in c programming?
Explain what is the benefit of using an enum rather than a #define constant?
What is union in c?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
Is swift based on c?
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
What is a example of a variable?
Why is it important to memset a variable, immediately after allocating memory to it ?
What are the scope of static variables?
illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question
What is a volatile keyword in c?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
Explain the difference between ++u and u++?