How to print "I Love My India" without using semi colon?
Answers were Sorted based on User's Feedback
Answer / shamik
#include<stdio.h>
void main()
{
if(printf("I love my India"))
getch();
}
| Is This Answer Correct ? | 38 Yes | 4 No |
Answer / sanjay
On VC++ and on Unix. Dont use getch();
as it was clearly mentioned for not to use ;
#include<stdio.h>
main()
{
if(printf("I love my India"))
}
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / manoj singh
#include<stdio.h>
void main()
{
clrscr();
if(printf("\"I love my India\""))
while(!kbhit());
}
| Is This Answer Correct ? | 4 Yes | 6 No |
Can anyone tell what is stack overflow? what precaution we should take?
Explain what are global variables and explain how do you declare them?
Can you please explain the difference between malloc() and calloc() function?
matrix multiplication fails introspect the causes for its failure and write down the possible reasons for its failurein c language.
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
Are local variables initialized to zero by default in c?
write a program to swap two numbers without using temporary variable?
Please write me a program to print the first 50 prime numbers (NOT between the range 1 -50)
Write a program to find the given number is odd or even without using any loops(if,for,do,while)
What is structure and union in c?
multiple of 9 without useing +,* oprator
What is the difference between union and anonymous union?