main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
10 19358#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 20173#include
#include
#include
how to convert binary to decimal and decimal to binary in C lanaguage
BPO, Far East Promotions, IBM, RBS,
7 28180Explain the importance and use of each component of this string: Foo.Bar, Version=2.0.205.0, Culture=neutral, PublicKeyToken=593777ae2d274679d
TCS,
1 7148
What is the total generic pointer type?
Do you know what are bitwise shift operators in c programming?
List the variables are used for writing doubly linked list program.
while initialization of array why we use a[][2] why not a[2][]...?
Why is not a pointer null after calling free?
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
Explain what are header files and explain what are its uses in c programming?
What are the features of c language?
Why pointers are used in c?
Here is a neat trick for checking whether two strings are equal
Is it cc or c in a letter?
What is an expression?
i have to apply for the rbi for the post of officers. i need to know abt the entrance questions whether it may be aps or techinical....
write a progrmm in c language take user interface generate table using for loop?
What is a pointer and how it is initialized?