What are 3 types of structures?
No Answer is Posted For this Question
Be the First to Post Answer
Write the control statements in C language
List the difference between a 'copy constructor' and a 'assignment operator' in C?
Differentiate between ordinary variable and pointer in c.
void main() { static int i = 5; if(--i) { main(); printf("%d ",i); } } what would be output of the above program and justify your answer? }
5 Answers C DAC, CDAC, Infosys, Wipro,
What are reserved words with a programming language?
what is pointer ? what is the use of pointer?
Difference between Class and Struct.
13 Answers Ericsson, Motorola, Wipro,
What is a struct c#?
#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....?
how to print this sereis 2 4 3 6 5..........?
Differentiate between the expression “++a” and “a++”?
What is Heap?