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 |
Write a program in C to convert date displayed in gregorian to julian date
Explain what is meant by 'bit masking'?
What does struct node * mean?
How can I make it pause before closing the program output window?
Do you know what are bitwise shift operators in c programming?
what is structuer?
can we implement multi-threads in c.
What is the difference function call by value & function call by reference?
what is the flow of execution in cprogram? ex:printf();,scanf();
I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.
what is the difference between procedure oriented and object oriented progaming language
What is the difference between c &c++?