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 27280array 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 17377how to print a statement in c without use of console statement ,with the help of if statement it should print
2 5214Every 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 4474Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
1952
a value that does not change during program execution a) variabe b) argument c) parameter d) none
what is the significance of static storage class specifier?
What is a null string in c?
Why C language is a procedural language?
Is main is user defined function?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
What is a pointer variable in c language?
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
What is malloc() function?
What are the different types of C instructions?
What does char * * argv mean in c?
how to create duplicate link list using C???
Array is an lvalue or not?
What are the advantages and disadvantages of a heap?
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above