When c language was developed?
No Answer is Posted For this Question
Be the First to Post Answer
How do you do dynamic memory allocation in C applications?
can we implement multi-threads in c.
What is calloc()?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
what are far pointers?
Write a program for deleting duplicate elements in an array
will u please send me the placement papers to my mail???????????????????
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
What is file in c preprocessor?
swap 2 numbers without using third variable?
What is difference between structure and union in c?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }