write a program to concatenation the string using switch
case?
No Answer is Posted For this Question
Be the First to Post Answer
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
What is structure in c definition?
what is the diff b/w static and non static variables in C. Give some examples plz.
What is string constants?
A program to allow an input operand and operator from the operator and read on the display and output operand.
How can draw a box in cprogram without using graphics.h header file & using only one printf(); ?
What is pointer and structure in c?
What's the difference between struct x1 { ... }; and typedef struct { ... } x2; ?
what are the advantages & disadvantages of unions?
Write one statement equalent to the following two statements x=sqr(a); return(x); Choose from one of the alternatives a.return(sqr(a)); b.printf("sqr(a)"); c.return(a*a*a); d.printf("%d",sqr(a));
Differentiate between ordinary variable and pointer in c.
What is the translation phases used in c language?