How to print "I Love My India" without using semi colon?
Answer Posted / sam
#include<stdio.h>
void main()
{
clrscr();
if(printf("\"I love my India\""))
while(!kbhit()\\why use this semi colon
}
so it is wrong
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
How are variables declared in c?
c program to compute AREA under integral
What is linear search?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What is auto keyword in c?
Where static variables are stored in memory in c?
What is bss in c?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
How many parameters should a function have?
What is c token?
What is extern storage class in c?
Tell me about low level programming languages.
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
Explain what is page thrashing?