What is string function in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is cohesion in c?
How to avoid buffer overflow?
How does struct work in c?
There are 21 people in a room. They have to form groups of 3 people each. How many combinations are possible? Write a C program to print the same.
How to throw some light on the b tree?
What are pragmas and what are they good for?
WAP to accept basic salary of an employee? Calculate it HRA=25%,DA=30%,PF=30%&net salary display all contents?
6 Answers Finite Infotech, Lovely Professional University, Wipro,
write a program structure to find average of given number
What are dangling pointers?
Please list all the unary and binary operators in C.
What are header files and explain what are its uses in c programming?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }