When you call malloc() to allocate memory for a local
pointer, do you have to explicitly free() it?
Answers were Sorted based on User's Feedback
logic for generating all the combinations of the any number of given letters. ex::::::::: if a,b,c,d are given the o/p should be abcd,dcba,dbac,bcad,................ 4*3*2*1 combinations............
If input is 123 then how to print 100 and 20 and 3 seperately?
What is time complexity c?
struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]
Write a c program to demonstrate Type casting in c?
Who is the founder of c language?
how to swap two nubers by using a function with pointers?
write a c program to find the probability of random numbers between 1-1000
How do you define a string?
Write a code to reverse string seperated by spaces i/p str=India is my country o/p str=aidnI si ym yrtnuoc After writing code, optimize the code
Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?