Is calloc better than malloc?
No Answer is Posted For this Question
Be the First to Post Answer
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Explain how do I determine whether a character is numeric, alphabetic, and so on?
Discuss similarities and differences of Multiprogramming OS and multiprocessing OS?
Find if a number is power of two or not?
Program to display given 3 integers in ascending order
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
what is use of loop?
How do you use a 'Local Block'?
write a c program to remove all the duplicate characters in a string and replace with single character? ex:-input- AAABBBCCC output- ABC
What is void c?
How do I copy files?
What are the features of c language?