main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
10 19599#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 20310#include
#include
#include
how to convert binary to decimal and decimal to binary in C lanaguage
BPO, Far East Promotions, IBM, RBS,
7 28383Explain the importance and use of each component of this string: Foo.Bar, Version=2.0.205.0, Culture=neutral, PublicKeyToken=593777ae2d274679d
TCS,
1 7221
What is function pointer c?
What is signed and unsigned?
Can one function call another?
Why enum is used in c?
What is a method in c?
Explain how do you list files in a directory?
What is the use of putchar function?
How many types of operators are there in c?
what will be the output for the following main() { printf("hi" "hello"); }
What is a structure member in c?
What are the back slash character constants or escape sequence charactersavailable in c?
Explain high-order and low-order bytes.
What are near, far and huge pointers?
Explain why can’t constant values be used to define an array’s initial size?
write a program to display all prime numbers