What is the use of linkage in c language?
No Answer is Posted For this Question
Be the First to Post Answer
can u write a program in C, which does not use = (eqaul)or any arithmatic assignment(like -=,+=,*= etc) operator to swap to number?
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); }
27 Answers Advent Global Solutions, CitiGroup, Valeo Lighting Systems India Private Limited, Vishal Transformers, Wipro, Zencer,
why do we use # in c-language?
What is the scope of an external variable in c?
given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)
What is meant by initialization and how we initialize a variable?
What are dynamically linked and statically linked libraries?
What does do in c?
Explain the advantages of using macro in c language?
What are reserved words?
What is header file definition?
How can I read a binary data file properly?