What is character set?
No Answer is Posted For this Question
Be the First to Post Answer
Which is not valid in C? 1) class aClass{public:int x;} 2) /* A comment */ 3) char x=12;
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
difference between string and array?
what is the full form of c language
Explain what is the purpose of "extern" keyword in a function declaration?
How can I read a directory in a C program?
2 Answers Bright Outdoor, 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
What is the use of keyword VOLATILE in C?
plz answer..... a program that reads non-negative integer and computes and prints its factorial
how can I convert a string to a number?
How can I recover the file name given an open stream or file descriptor?
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }