Answer Posted / public
52
| Is This Answer Correct ? | 17 Yes | 2 No |
Post New Answer View All Answers
Why header files are used?
write a c program for swapping two strings using pointer
What is extern variable in c with example?
What is zero based addressing?
p*=(++q)++*--p when p=q=1 while(q<=6)
What is I ++ in c programming?
Which is an example of a structural homology?
What are the restrictions of a modulus operator?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
How can you find the day of the week given the date?
I came across some code that puts a (void) cast before each call to printf. Why?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What is the correct declaration of main?
How can you draw circles in C?
What is dynamic dispatch in c++?