explain what is an endless loop?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

21. #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }

3 Answers  


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

0 Answers   HCL,


How can I do peek and poke in c?

0 Answers  


Write a program with dynamically allocation of variable.

0 Answers   Atos Origin,


Is it valid to address one element beyond the end of an array?

0 Answers  






#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }

3 Answers   SRG,


Explain what?s happening in the first constructor: public class c{ public c(string a) : this() {;}; public c() {;} } How is this construct useful?

1 Answers  


Do you have any idea how to compare array with pointer in c?

0 Answers  


which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;

0 Answers  


Explain what is the difference between a string and an array?

0 Answers  


program to find middle element of linklist?

1 Answers   Huawei,


In a switch statement, explain what will happen if a break statement is omitted?

0 Answers  


Categories