How to print "I Love My India" without using semi colon?
Answer Posted / shamik
#include<stdio.h>
void main()
{
if(printf("I love my India"))
getch();
}
| Is This Answer Correct ? | 38 Yes | 4 No |
Post New Answer View All Answers
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
What are formal parameters?
How can I read a binary data file properly?
Who developed c language and when?
How reliable are floating-point comparisons?
Explain the use of keyword 'register' with respect to variables.
Explain the difference between getch() and getche() in c?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
Is swift based on c?
Explain what are reserved words?
What are the types of bitwise operator?
What are the two types of structure?
Write a program to print ASCII code for a given digit.
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
#include