c language interview questions & answer
No Answer is Posted For this Question
Be the First to Post Answer
How can I read/write structures from/to data files?
who will call your main function in c under linux?
why we use "include" word before calling the header file. is there any special name for that include??????
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 would be the output of the following prog? Justify your answer? main() { unsigned char ch; unsigned char i; ch = -255; printf("%d",ch); i = -1; printf("%d",i); }
what is compiler
How do you use a 'Local Block'?
int a=1,b=2,c=3; printf("%d,%d",a,b,c); What is the output?
how to find out the biggest element (or any other operation) in an array which is dynamic. User need not to mention the array size while executing.
What is the difference between strcpy() and memcpy() function in c programming?
which is the best antivirus and how to update it
write a program that finds the factorial of a number using recursion?