Why doesnt this code work?
write a c prog for removing duplicate character from an array and sorting remaining elements using a single array
Every time i run a c-code in editor, getting some runtime error and editor is disposing, even after reinstalling the software what may be the problem?
What are the different types of pointers?
sqrt(x+sqrt(x+sqrt(x+sqrt(x))))=2; Find the value of x?
macros and function are related in what aspect? a)recursion b)varying no of arguments c)hypochecking d)type declaration
12 Answers HCL, Infosys, Microsoft,
which operator is known as dummy operator in c?
Which weighs more, a gram of feathers or a gram of gold?
Can anyone help me with this please? Need to print the below values.. Thanks 1 1 2 1 2 3 1 2 3 4
Tell us the difference between these two : #include"stdio.h" #include<stdio.h> define in detial.
Is there any book to know about Basics of C Language?
Program to find larger of the two numbers without using if-else,while,for,switch
#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?