Explain what are the different data types in c?
No Answer is Posted For this Question
Be the First to Post Answer
How #define works?
What is the output of the following program #include<stdio.h> main() { int i=0; fork(); printf("%d",i++); fork(); printf("%d",i++); fork(); wait(); }
What is period operator in c?
what is the significance of static storage class specifier?
main() { int i; printf("%d",((i=1)*i-- - --i*(i=-3)*i++ + ++i)); } ans is 24 bt how?pls tell smbody............
Does free set pointer to null?
What are the types of unary operators?
Can a pointer be volatile in c?
Differentiate between full, complete & perfect binary trees.
What is difference between structure and union with example?
what is the most appropriate way to write a multi-statement macro?
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }