Answer Posted / sindhu
the question is not rightly framed..grammar mistake..
| Is This Answer Correct ? | 1 Yes | 4 No |
Post New Answer View All Answers
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
If fflush wont work, what can I use to flush input?
What is a string?
difference between Low, Middle, High Level languages in c ?
Why doesnt that code work?
how to find anagram without using string functions using only loops in c programming
What is null in c?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
Define VARIABLE?
Was 2000 a leap year?
How would you obtain the current time and difference between two times?
can we implement multi-threads in c.
Why is %d used in c?
How main function is called in c?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA