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
#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?
hello freinds next week my interview in reliance,nybody has an idea about it intervew questions..so tell
Who is the main contributor in designing the c language after dennis ritchie?
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
What does the format %10.2 mean when included in a printf statement?
What is the purpose of macro in C language?
will u give me old quesrion papers for aptitude for L & t info tech?
How to print "I Love My India" without using semi colon?
Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.
can a union be self-referenced?
can we initialize all the members of union?
Explain what is output redirection?