Answer Posted / ehsan
The time between sending and receiving the data,
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What is the use of a conditional inclusion statement in C?
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.
Explain what are linked list?
Why is it usually a bad idea to use gets()? Suggest a workaround.
What is dangling pointer in c?
Why can’t we compare structures?
What does c value mean?
What does return 1 means in c?
What is a static variable in c?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
What do you mean by invalid pointer arithmetic?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
can any one tel me wt is the question pattern for NIC exam
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
What is advantage of pointer in c?