What is bash c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the return type of sizeof?
What is const keyword in c?
What are the types of pointers in c?
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
Write a C program to read the internal test marks of 25 students in a class and show the number of students who have scored more than 50% in the test. Make necessary assumptions.
Is there anything like an ifdef for typedefs?
can any one provide me the notes of data structure for ignou cs-62 paper
Reverse the part of the number which is present from position i to j. Print the new number. eg: num=789876 i=2 j=5 778986
write a c program to find largest of three numbers using simple if only for one time.
what is available in C language but not in C++?
10 Answers CTS, TCS,
What functions are used for dynamic memory allocation in c language?
how to do in place reversal of a linked list(singly or doubly)?