What are pointers? What are stacks and queues?
No Answer is Posted For this Question
Be the First to Post Answer
what is the use of keyword volatile??
Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer
do you think its fraud or original company?
Difference between null pointer and dangling pointer?
Explain how can you avoid including a header more than once?
what is self refrential structure
sir i wanted to know how we wap in c to add numbers without using arithmetic operator in which digits are entered by user?
What is the OOPs concept?
Explain low-order bytes.
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); }
What is hashing in c language?
write a program to print largest number of each row of a 2D array