errors in computer programmes are called
what is difference between ANSI structure and C99 Structure?
Here is a neat trick for checking whether two strings are equal
How can I access a memory located at certain address?
Write a function that accepts two numbers,say a and b and makes bth bit of a to 0.No other bits of a should get changed.
2 Answers Scientific Atlanta, Wipro,
When is a void pointer used?
What is diffrance between declaration and defination of a variable or function
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
How do I convert a string to all upper or lower case?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
how to reverse string "Hello World" by using pointers only. Without any temp var