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

What is pragma c?

0 Answers  


C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15

6 Answers   TCS, Wipro,


How can I do serial ("comm") port I/O?

0 Answers   Celstream,


Explain how can I make sure that my program is the only one accessing a file?

0 Answers  


? ???Mirror Mirror on the wall????????

1 Answers   channel V, DPI,






send me the code of flow chart generator using C-programming language amd this code should calculate the time and space complexity of the given progran and able to generate flowchart according to the given program?

0 Answers   TCS,


how to make program without <> in library.

1 Answers   ADITI,


What is the value of a[3] if integer a[] = {5,4,3,2,1}?

0 Answers  


What is the output of the below program and how it is? void main() { static int var=5; printf("%d",var--); if(var) main(); }

8 Answers   MindFire, TCS, Tech Mahindra,


List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.

0 Answers   Ignou,


Stimulate calculator using Switch-case-default statement for two numbers

0 Answers   Wipro,


how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?

0 Answers   TCS,


Categories