A C E G H
+B D F A I
------------
E F G H D
Answer Posted / raja s
cefgc
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Define VARIABLE?
What are the types of pointers in c?
How can I find out how much free space is available on disk?
What is character constants?
What is the purpose of & in scanf?
Here is a neat trick for checking whether two strings are equal
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What language is lisp written in?
What is a loop?
Is linux written in c?
What is the use of extern in c?
What functions are used in dynamic memory allocation in c?
What is the use of c language in real life?
Should a function contain a return statement if it does not return a value?