What is null in c?
No Answer is Posted For this Question
Be the First to Post Answer
please explain every phase in the "SDLC" in the dotnet.
Implement a function that returns the 5th element from the end in a singly linked list of integers in one pass.
State two uses of pointers in C?
How can I find out if there are characters available for reading?
What is the use of function overloading in C?
What is Full Form of C and Why We use C
What is the newline escape sequence?
Is swift based on c?
main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }
where does malloc() function get the memory?
my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?
what is the output for the code : main() { int i,j; printf("%d %d ",scanf("%d%d",&i,&j)); }