Why is c so powerful?
No Answer is Posted For this Question
Be the First to Post Answer
why 'c' is called middle level language.
main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }
22 Answers NDS, TCS,
Write a program in c to print * * * * * *******
How do you determine if a string is a palindrome?
logic for generating all the combinations of the any number of given letters. ex::::::::: if a,b,c,d are given the o/p should be abcd,dcba,dbac,bcad,................ 4*3*2*1 combinations............
what will be the output of this program........ main() { int a=2,b=4,c=6; printf("%d"); } why it gives the value of third variable.
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
Differentiate between a for loop and a while loop? What are it uses?
What is the use of clrscr?
say the following declaration is correct nr not. int b=a,n=0;
What is the difference between if else and switchstatement
How can I do serial ("comm") port I/O?