Explain what are linked list?
No Answer is Posted For this Question
Be the First to Post Answer
State the difference between x3 and x[3].
how to print "hai" in c?
What are the advantages of using Unions?
What is the output for the program given below typedef enum grade{GOOD,BAD,WORST,}BAD; main() { BAD g1; g1=1; printf("%d",g1); }
What's a good way to check for "close enough" floating-point equality?
What is the correct code to have following output in c using nested for loop?
ASCII stands for
How is a macro different from a function?
Explain what is the difference between a string and an array?
how to use virual function in real time example
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Is c object oriented?