What are data types in c language?
No Answer is Posted For this Question
Be the First to Post Answer
c program to add and delete an element from circular queue using array
What is the heap in c?
What does return 1 means in c?
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
What does the error 'Null Pointer Assignment' mean and what causes this error?
Write a C program to get the desired output. 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 . . . 1 n..............n 1 Note: n is a positive integer entered by the user.
why the execution starts from main function
what is the difference between arrays and linked list
26 Answers MAHINDRA, Tech Mahindra, Wipro,
What is the difference between near, far and huge pointers?
Explain how do you use a pointer to a function?
What is the output of the below program and how it is? void main() { static int var=5; printf("%d",var--); if(var) main(); }
8 Answers MindFire, TCS, Tech Mahindra,
which one is highest Priority in c? a)=,b)+,c)++,d)==