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
Answer / deepanshu kakkar
#include<stdio.h>
void main()
{
if(printf("deepanshu kakkar"));
}
Is This Answer Correct ? | 4 Yes | 1 No |
what is the difference between static variable and register variable?
What are header files and what are its uses in C programming?
How can I change the size of the dynamically allocated array?
when i declare as: void main() { clrscr(); int a=10; printf("%d",a) } my problem that why generate a error in above programs. please tell me answer seriously .
Explain void pointer?
What do mean by network ?
1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x=4; While(x==1) { X=x-1; Printf(“%d”,x); --x; } }
How to use c/c++ code in JAVA
10 Answers CDAC, IBM, Satyam, Scope International,
Why clrscr is used in c?
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
Explain what is a 'locale'?
What is pass by reference in c?