What's the best way of making my program efficient?
No Answer is Posted For this Question
Be the First to Post Answer
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
swap two integer variables without using a third temporary variable?
what is the role you expect in software industry?
Is that possible to add pointers to each other?
What are the different types of C instructions?
can u write a program in C, which does not use = (eqaul)or any arithmatic assignment(like -=,+=,*= etc) operator to swap to number?
What are the average number of comparisons required to sort 3 elements?
Write a program to print factorial of given number without using recursion?
Process by which one bit pattern in to another by bit wise operation is?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
why in C,C++'s int size is 2 byte and .net(c#) int Size is 4 byte?
in C-programming language without using printf statement can we get output r not ? if yes how and if no also how ?