Who invented bcpl language?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of gets and puts?
write a program of bubble sort using pointer?
what is the size of an integer variable?
Would you rather wait for the results of a quicksort, a linear search, or a bubble sort on a 200000 element array? 1) Quicksort 2) Linear Search 3) Bubble Sort
What is the difference between malloc calloc and realloc in c?
What is the difference between volatile and const volatile?
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); }
27 Answers Advent Global Solutions, CitiGroup, Valeo Lighting Systems India Private Limited, Vishal Transformers, Wipro, Zencer,
how to implement stack work as a queue?
What is function pointer and where we will use it
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
a<<1 is equivalent to a) multiplying by 2 b) dividing by 2 c) adding 2 d)none of the above
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }