what is the most appropriate way to write a multi-statement
macro?
What is pass by reference in c?
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
What are disadvantages of C language.
write a program to interchange the value between two variable without using loop
C language questions for civil engineering
#include<stdio.h> int f(int,int); int main() { printf("%d",f(20,1)); return 0; } int f(int n,int k) { if(n==0) return 0; else if(n%2)return f(n/2,2*k)+k; else return f(n/2,2*k)-k; } how this program is working and generating output as 9....?
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
CopyBits(x,p,n,y) copy n LSBs from y to x starting LSB at 'p'th position.
Why static variable is used in c?
WHY DO WE USE A TERMINATOR IN C LANGUAGE?
Why c is called free form language?
Write a program to generate prime factors of a given integer?