Is c programming hard?


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

Post New Answer

More C Interview Questions

value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?

6 Answers   Google,


which of the following go out of the loopo if expn 2 becoming false a.while(expn 1){...if(expn 2)continue;} b.while(!expn 1){if(expn 2)continue;...} c.do{..if(expn 1)continue;..}while(expn 2); d.while(!expn 2){if(expn 1)continue;..}

4 Answers   TCS,


Is int a keyword in c?

0 Answers  


Famous puzzles which are generally asked by companies during interviews ?

1 Answers   3D PLM, Yahoo,


What is the use of function in c?

0 Answers  






write a program to insert an element at the specified position in the given array in c language

5 Answers   Appin, IBM,


What is the difference between the expression “++a” and “a++”?

0 Answers  


What is Lazy evaluation in C? Give an example.

1 Answers  


What is a structure in c language. how to initialise a structure in c?

0 Answers  


c program to compute Income tax and Net Salary for its employees. The company offers tax relief of Kshs. 650 for single employees and Kshs. 1,100 for married employees. The relief will be deducted from the Gross salary, to give the taxable income. This will be computed at the following rates: [10mks] Taxable Income Rate (%) <5000 0 5000-19999 6 20000-36999 9 37000 and above 16

1 Answers  


What is auto keyword in c?

0 Answers  


Why is the code below functioning. According to me it MUST NOT.

1 Answers  


Categories