What are local static variables? How can you use them?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Do you know the difference between exit() and _exit() function in c?

0 Answers  


What is function prototype in c language?

0 Answers  


What is the difference between strcpy() and memcpy() function in c programming?

0 Answers  


what are non standard function in c

0 Answers  


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

1 Answers   MTNL,






what is the difference between #include<> and #include”…”?

5 Answers  


what is c language.

3 Answers  


void main() { int s[4][2]={ {1234,56},{1212,33},{1434,80},{1312,78} }; int (*p)[2]; int i,j,*pint; for(i=0;i<=3;i++) { p=&s[i]; pint=p; printf("\n"); for(j=0;j<=1;j++) printf("%d",*(pint+j)); } } while running this program it shows a warning-suspicious pointer conversion ie pint=p; my que is why should we assign the value of p to pint again.why cant we use it directly as *(p+j)..but if i use like tat the o/p is garbage value..

1 Answers  


Write a C program that reads a series of strings and prints only those ending in "ed"

2 Answers   Accenture,


What are categories used for in c?

0 Answers  


How can I manipulate strings of multibyte characters?

0 Answers  


Explain pointers in c programming?

0 Answers  


Categories