What functions are used for dynamic memory allocation in c language?
No Answer is Posted For this Question
Be the First to Post Answer
Why is c so powerful?
Can you please explain the difference between strcpy() and memcpy() function?
how can make variable not in registers
can anyone suggest some site name..where i can get some good data structure puzzles???
how to convert an char array to decimal array
Define a structure to store roll no, name and marks of a student. Using the structure of above write a ‘C’ program to create a file “student.dat”. There must be one record for every student in the file. Accept the data from the user.
What is the difference between constant pointer and constant variable?
x=2,y=6,z=6 x=y==z; printf(%d",x)
13 Answers Bharat, Cisco, HCL, TCS,
enum day = { jan = 1 ,feb=4, april, may} what is the value of may? a)4 b)5 c)6 d)11 e)none of the above
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }
Whats s or c mean?
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............