What does sizeof int return?
Can the size of an array be declared at runtime?
Explain enumerated types in c language?
write a program to add two numbers of any size.....(remember any size)
What is the difference between %d and %*d in C
do you think its fraud or original company?
What the different types of arrays in c?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
Input is "Jack and jill went up a hill" To print output is 1-letter word(s)-1 2-letter words-1 3-letter words-1 4-letter words-4
int main() { int i=-1,j=-1;k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d%d%d%d%d",i,j,k,l,m); }
What is #ifdef ? What is its application?
Which of these statements are false w.r.t File Functions? i)fputs() ii)fdopen() iii)fgetpos() iv)ferror() A)ii B)i,ii C)iii D)iv
how to swap two nubers by using a function with pointers?