Explain Basic concepts of C language?
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); } what is the output?
7 Answers AMCAT, HCL, Ramco, Zycus Infotech,
Explain what is the benefit of using #define to declare a constant?
write a c program to accept a given integer value and print its value in words
4 Answers Vernalis, Vernalis Systems,
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }
C program to perform stack operation using singly linked list
Explain what are linked list?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
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 :(
what is c programing
What is the output of the following program main();{printf ("chennai""superkings"}; a. Chennai b. superkings c. error d. Chennai superkings
Why #include is used in c language?
What is methods in c?