What is the use of a static variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is #line used for?
How we can set and clear bit in a byte using macro function?
can u give me the good and very optimised code for a car racing game?
print out put like this form 1 2 3 4 5 6 3 5 7 9 11 8 12 16 20
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
What are pointers really good for, anyway?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
What is external and internal variables What is dynamic memory allocation what is storage classes in C
write an algorithm which can find the largest number among the given list using binary search ............... this was asked in the interview
2 Answers Satyam, UNIS, Wipro,
give one ip, find out which contry
Write a C Programm.. we press 'a' , it shows the albhabetical number is 1, if we press 'g' it shows the answer 7.. any can help me
In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }