When should structures be passed by values or by references?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what is the difference between text files and binary files?
how to write a c program to print list of fruits in alpabetical order?
A stack can be implemented only using array?if not what is used?
What are data types in c language?
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.
What are the difference between a free-standing and a hosted environment?
print 1-50 with two loop & two print Statement
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }
WRITE A PROGRAM IN C TO MULTIPLY TWO 2-D ARRAYS
void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }
What are the parts of c program?
What is the significance of c program algorithms?