main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
10 19343#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?
4 20156#include
#include
#include
how to convert binary to decimal and decimal to binary in C lanaguage
BPO, Far East Promotions, IBM, RBS,
7 28161Explain the importance and use of each component of this string: Foo.Bar, Version=2.0.205.0, Culture=neutral, PublicKeyToken=593777ae2d274679d
TCS,
1 7142
What is a string?
i got 75% in all semester am i eligible for your company
Why c is called a middle level language?
What is #include stdio h and #include conio h?
why programs in c are running with out #include
What is substring in c?
Explain what is the heap?
What are volatile variables in c?
What is a class c rental property?
What is the -> in c?
What is time complexity c?
Is exit(status) truly equivalent to returning the same status from main?
What is difference between structure and union in c?
What is the best way of making my program efficient?
How do I swap bytes?