1234554321
1234 4321
123 321
12 21
1 1
12 21
123 321
1234 4321
1234554321
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
Write a c program to print the sizes and ranges of different data types in c?
write the program for prime numbers?
73 Answers Accenture, Aptech, Infosys, TCS,
What is difference between union All statement and Union?
Read N characters in to an array . Use functions to do all problems and pass the address of array to function. 2. Enter alphanumeric characters and form 2 array alphaets and digits.Also print the count of each array.
main() { char *p; p="Hello"; printf("%c\n",*&*p); }
Find the highest of three numbers and print them using ascending orders?
Explain how can I make sure that my program is the only one accessing a file?
What is huge pointer in c?
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?
what different between c and c++
What is the difference between a function and a method in c?