if array a conatins 'n' elements and array b conatins 'n-1' elements.array b has all element which are present in array a but one element is missing in array b. find that element.
18 26770array contains zeros and ones as elements.we need to bring zeros one side and one other side in single parse. ex:a[]={0,0,1,0,1,1,0,0} o/p={0,0,0,0,0,1,1,1}
12 17038how to print a statement in c without use of console statement ,with the help of if statement it should print
2 5117Every time i run a c-code in editor, getting some runtime error and editor is disposing, even after reinstalling the software what may be the problem?
2 4373Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
1914
How can I trap or ignore keyboard interrupts like control-c?
Function calling procedures? and their differences? Why should one go for Call by Reference?
What is break statement?
what is the function of pragma directive in c?
What is main function in c?
Explain what are preprocessor directives?
Is null valid for pointers to functions?
which is conditional construct a) if statement b) switch statement c) while/for d) goto
What is the difference between variable declaration and variable definition in c?
what is use of malloc and calloc?
explain what are actual arguments?
Are global variables static in c?
What is the explanation for the dangling pointer in c?
Do pointers store the address of value or the actual value of a variable?
Write a C program in Fibonacci series.