how to print a statement in c without use of console
statement ,with the help of if statement it should print

Answers were Sorted based on User's Feedback



how to print a statement in c without use of console statement ,with the help of if statement it s..

Answer / girish

#include <stdio.h>
void main()
{
if(printf("Hello World"))
}

Is This Answer Correct ?    14 Yes 3 No

how to print a statement in c without use of console statement ,with the help of if statement it s..

Answer / deepanshu kakkar

#include<stdio.h>
void main()
{
if(printf("deepanshu kakkar"));
}

Is This Answer Correct ?    4 Yes 1 No

Post New Answer

More C Interview Questions

Discuss similarities and differences of Multiprogramming OS and multiprocessing OS?

4 Answers   TCS,


write a program that will read the temperature in Celsius and convert that into Fahrenheit.

1 Answers  


GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA

0 Answers  


What is #define in c?

0 Answers  


how can i get the output 54321 4321 321 21 1 in c programming........???? pls help......

10 Answers   Infosys,


What should be keep precautions while using the recursion method?

1 Answers  


print ur name without using any semicolon in c/c++....

21 Answers   Bosch, TCS, Wipro,


write a prgram of swapping with 2 valiables

6 Answers  


Write a c program using for loop in switch case?

1 Answers   Infosys,


Write a program in C to reverse a number by recursive function?

1 Answers  


what is the use of a array in c

6 Answers  


What is extern keyword in c?

0 Answers  


Categories