Write a progarm to find the length of string using switch
case?
No Answer is Posted For this Question
Be the First to Post Answer
What is merge sort in c?
Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
what is ANSI and ISO
Whats wrong with the following function char *string() { char *text[20]; strcpy(text,"Hello world"); return text; }
consider the following program sigment int n,sum=1; switch(n) { case 2:sum=sum+2; case 3:sum*=2; break; default:sum=0;} if n=2, what is the value of sum a.0 b.6 c.3 d.none
What are predefined functions in c?
advantages of pointers?
Function calling procedures? and their differences? Why should one go for Call by Reference?
How do I initialize a pointer to a function?
a<<1 is equivalent to a) multiplying by 2 b) dividing by 2 c) adding 2 d)none of the above
1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x=4; While(x==1) { X=x-1; Printf(ā%dā,x); --x; } }
What are the disadvantages of c language?