How we can write a value to an address using macro..?
No Answer is Posted For this Question
Be the First to Post Answer
write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.
#‎include‬<stdio.h> void main() { int i; for(i=5;0;i++) { printf("%d",i); } }
What is the difference between c &c++?
what is the output of below code int x=8,y; x>>=2; y=x; what is y value. NOTE:EXPLANATION IS COMPALSARY with binary bits
WHO WROTE C LANGUAGE?
wap in c to accept a number display the total count of digit
C passes By value or By reference?
5 Answers Geometric Software, Infosys,
How to Throw some light on the splay trees?
What is c token?
How can I find out if there are characters available for reading?
Explain what is the difference between far and near ?
void main() {int i=2; printf("%d%d%d",i,++i,i++); getch(); }