What are the advantages of using macro in c language?
No Answer is Posted For this Question
Be the First to Post Answer
What is the meaning of && in c?
Illustrate it summing the series 2+4+6+......to n terms using (i) while loop (ii) do-while loop
What is a #include preprocessor?
What are the Advantages of using macro
List some basic data types in c?
What is the role of this pointer?
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
write a c prog for removing duplicate character from an array and sorting remaining elements using a single array
int a=1,b=2,c=3; printf("%d,%d",a,b,c); What is the output?
Taking an example,differentiate b/w loader and linker ?
program for validity of triangle from 3 side
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }