What is gets() function?
No Answer is Posted For this Question
Be the First to Post Answer
write the output of following code .. main() { static int a[]={10,20,30,40,50}; int *ptr=a; static int arr[2][2]={1,2,3,4}; char str[]="ABCD * 4#"; char *s=str+2; int i,j; for(i=0;i<5,i++) printf("%d",*ptr++); for(i=0;i<2;i++) for(j=0;j<2;j++) printf("%d\n",*(*(n+i)+j)); printf("%c\n%c\n%c\n",*(str+2),*s++,*--s); }
what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }
in linking some of os executables are linking name some of them
What is the difference between typedef struct and struct?
Is c is a high level language?
Explain the difference between malloc() and calloc() in c?
What is pointers in c with example?
read an array and search an element
What does typedef struct mean?
#define DCHAR char* typedef char* TCHAR; if using these following variables will be declared like DCHAR ch1, ch2; TCHAR ch3, ch4; then what will be types of ch1, ch2, ch3 and ch4?
How do you search data in a data file using random access method?
is c language is a object oreinted language?