int i=10;
printf("%d %d %d", i, i=20, i);
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }
What is the difference b/w main() in C language and main() in C++.
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
What is non linear data structure in c?
Write a program to print all permutations of a given string.
Which is better malloc or calloc?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
2 Answers HCL, IBM, Satyam, Vimal, Vimukti Technologies,
How can a program be made to print the name of a source file where an error occurs?
Explain how do you view the path?
What are the c keywords?
What is the use of extern in c?
Input any no. and print all the the numbers that comes before it like this for e.g input = 4 0 01 012 0123 01234 plz answer it 2day