How was c created?
No Answer is Posted For this Question
Be the First to Post Answer
why Language C is plateform dependent
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }
Write a Program to find whether the given number or string is palindrome.
Write a c program using for loop to print typical pattern if number of rows is entered by keyboard. ABCBA AB BA A A
get any number as input except 1 and the output will be 1.without using operators,expressions,array,structure.don't print 1 in printf statement
Is it acceptable to declare/define a variable in a c header?
the number of measuring units from a arbitrary starting point in a record area or control block to some other point a) branching b) recording pointer c) none d) offset
When you call malloc() to allocate memory for a local pointer, do you have to explicitly free() it?
IS STRUCTURES CAN BE USED WITHIN AN ARRAY?
What is a Genralised LInked List?? Please give a detailed explation of it..
What is a Deque?
Write a function in c to find the area of a triangle whose length of three sides is given.