What is #define in c?
No Answer is Posted For this Question
Be the First to Post Answer
errors in computer programmes are called
wat is the meaning of c?
int x=5; printf("%d%d%d",x,x<<2,x>>2);
What is the difference between array and pointer in c?
In which header file is the null macro defined?
Do pointers need to be initialized?
What does sizeof return c?
When a c file is executed there are many files that are automatically opened what are they files?
sir, i cannot find the way how to write aprogram by using array on queue
Explain what is the difference between far and near ?
who is the father of c
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }