what are enumerations in C
No Answer is Posted For this Question
Be the First to Post Answer
What is the main differences between C and Embedded C?
what is default constructor?
can we implement multi-threads in c.
Is array a primitive data type in c?
Write any data structure program (stack implementation)
what is the function of .h in #include<stdio.h> in c ?
23 Answers HCL, IBM, Wipro,
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
Implement a function that returns the 5th element from the end in a singly linked list of integers in one pass.
What are dangling pointers in c?
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }
What is fflush() function?
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1