What is a function simple definition?
No Answer is Posted For this Question
Be the First to Post Answer
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }
how we do lcm of two no using c simple if while or for statement
What oops means?
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 is difference between structure and union?
What are comments and how do you insert it in a C program?
What are the rules for the identifier?
Write a code to generate a series where the next element is the sum of last k terms.
What is the use of c language in real life?
main() { int i; printf("%d",i^i); }
create an SINGLE LINKED LISTS and reverse the data in the lists completely
please help me.. how to write a code of this output?? "Enter range number:"10 1 is an odd number 2 is an even numbers 3 in an odd numbers 4 " to 10" "printing all odd numbers:" 1,3,5,7,9 "printing all even numbers:" 2,4,6,8,10 "sum of all odd numbers:25 "sum of all even numbers:30 using a C Programming ARRAY pleas pleas help.. its my project ..please :(