What is #define?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the differences between public, protected, private and internal.
what is the meaning of 'c' language
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
what is the output of printf("%d",(scanf("%d",10));
#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?
Write a C function to search a number in the given list of numbers. donot use printf and scanf
What is 1f in c?
Given an array of numbers, except for one number all the others occur twice. Give an algorithm to find that number which occurs only once in the array.
to find out the reverse digit of a given number
6 Answers Infosys, Microsoft, TCS, Wipro,
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
Which of the following is not a valid declaration for main ()? 1) int main() 2) int main(int argc, char *argv[]) 3) They both work
What are the different types of storage classes in C?