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 26799array 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 17055how to print a statement in c without use of console statement ,with the help of if statement it should print
2 5131Every 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 4379Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
1916
What is the difference between struct and union in C?
What are the properties of union in c?
What are the advantages of union?
while initialization of array why we use a[][2] why not a[2][]...?
How would you rename a function in C?
What is the role of this pointer?
Who developed c language and when?
Explain the use of bit fieild.
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
What will the preprocessor do for a program?
What is the difference between the expression “++a” and “a++”?
What is the difference between malloc calloc and realloc in c?
how should functions be apportioned among source files?
What is difference between constant pointer and constant variable?
What is meant by keywords in c?