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 does sizeof int return?
main() { float a=8.8; double b=8.8; if(a==b) printf("Equal"); else printf("not equal"); getch(); } what is the output? with reason
If we give two names then this displays the connection between the two people. It is nothing but flames game
Where are local variables stored in c?
How does free() know how many bytes to free?
write a c program for print your name .but,your name may be small letter mean print a capital letter or your name may be capital letter mean print a small letter .example \\enter ur name : sankar The name is: SANKAR (or) enter your name:SAnkar The name is:saNKAR
Write a program to generate prime factors of a given integer?
what is the difference between NULL('\0') and 0?
What is function pointer c?
Explain do array subscripts always start with zero?
What are header files? What are their uses?
in b=6.6/a+(2*a+(3*c)/a*d)/(2/n); which operation will be performed first a) 6.6/a b) 2*a c) 3*c d) 2/n