how will you write a program on linked lists using JAVA
programming???????????
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is
What do you mean by keywords in c?
The operation of a stair case switch best explains the a) or operation b) and operation c)exclusive nor operation d)exclusive or operation Which of the following is/are syntactically correct? a) for(); b) for(;); c) for(,); d) for(;;);
1 Answers HCL, Public Service Commission,
what is difference between c and c++
write c program without semicolon
11 Answers MindTech, TCS, Wipro,
Why do we use int main instead of void main in c?
What are type modifiers in c?
What are the 5 types of inheritance in c ++?
write a program in 'c' to find the value of p[i+1]^n.p,i,n are arguments of a macro and n is a integer
int a=0,b=2; if (a=0) b=0; else b=*10; What is the value of b ?
Is it possible to run using programming C for Java Application?
Program to display given 3 integers in ascending order