Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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


Please Help Members By Posting Answers For Below Questions

What are the 4 data types?

1009


what is event driven software and what is procedural driven software?

2564


Are there any problems with performing mathematical operations on different variable types?

1036


What is c language in simple words?

1064


Explain what are reserved words?

1096


Why are all header files not declared in every c program?

1096


about c language

2004


Explain how do I determine whether a character is numeric, alphabetic, and so on?

1128


I have a varargs function which accepts a float parameter?

1034


Write programs for String Reversal & Palindrome check

1054


What is the condition that is applied with ?: Operator?

1125


what is different between auto and local static? why should we use local static?

1122


What is use of #include in c?

1157


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

1306


How does placing some code lines between the comment symbol help in debugging the code?

984