What is string function in c?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program for deleting duplicate elements in an array
How to find the given no is odd or even without checking of any condition and loops. (Hint: Using array)
What are the 5 data types?
How would you obtain the current time and difference between two times?
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }
What is undefined behavior?
the data type used for unlimited value in c and how to do this program
What is the method to save data in stack data structure type?
Give me basis knowledge of c , c++...
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 are dangling pointers in c?
What is period operator in c?