I was asked to write a program in c which when executed
displays how many no.of clients are connected to the server.
No Answer is Posted For this Question
Be the First to Post Answer
Is c weakly typed?
How to add two numbers without using semicolon at runtime
Give the Output : * * * * * * * * * *
Write a Program to print this triangle: * ** * **** * ****** * ******** * ********** use two nested loops.
12 Answers MIT, TCS,
Write a code to determine the total number of stops an elevator would take to serve N number of people.
program that accepts amount in figures and print that in words
2 Answers Infosys, Lovely Professional University, Wipro,
i am using gsm modem ! I USE CMGL COMMAND TO DISPLAY THE LIST OF MESSAGES ! I WANT TO READ EACH MESSAGE ONE BY ONE AND GET EACH MESSAGE INDEX USING C PROGRAM ! THE RESPONSE OF THE MODULE AFTER AT+CMGL IS ---CMGL: 1,"REC READ","+85291234567",,"07/05/01,08:00:15+32",145,37 It is easy to list SMS text messages.---- I WANT THE PROGRAM TO GET THE NUMBER "37"{MESSAGE LENGTH} AS WELL AS "1"(MESSAGE INDEX NUMBER" PLEASE HELP
How can you invoke another program from within a C program?
Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }
How would you write qsort?
Write the Program to reverse a string using pointers.
Differentiate Source Codes from Object Codes