What is the difference between array and pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
How can I call a function with an argument list built up at run time?
void main() {int i=2; printf("%d%d%d",i,++i,i++); getch(); }
how to create c progarm without void main()?
What is meant by realloc()?
Create a simple code fragment that will swap the values of two variables num1 and num2.
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
How do I copy files?
What is the restrict keyword in C?
f=(x>y)?x:y a) f points to max of x and y b) f points to min of x and y c)error
what is the use of using linked list and array?
how does the for loop work actually..suppose for the following program how it ll work plz explain to me for(i=5;i>=0;i--) prinf(i--);
3.write a simple program that will output your name,phone number,e-mail address,and academic major on separate lines 1.create an account and a personal directory for your work b.find out how to create a subdirectory on your system.create one called info c.you will use a text editor to type in your programs and data files.some C systems have a built in text editor;others do not.Find out what text editor you will be using and how to access it.create a text file(not a program) containing your name ,address,and telephone number on separate lines.Next,write the brand of computer you are using and the name of the text editor.Then write a paragraph that describes your past experience with computers.save this file in your info directory. d. find out how to print a file on your system .print out and turn in the file you created in (c).