What is variable declaration and definition in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the meaning of this decleration? unsigned char (*pArray[10][10]); please reply.
Write the program for displaying the ten most frequent words in a file such that your program should be efficient in all complexity measures.
write a program to add two numbers of any size.....(remember any size)
What are file streams?
Differentiate call by value and call by reference?
What is the basic structure of c?
Explain what is the difference between functions getch() and getche()?
What will be the output of x++ + ++x?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
Write a program to print this triangle: * ** * **** * ****** * ******** * ********** Don't use printf statements;use two nested loops instead. you will have to use braces around the body of the outer loop if it contains multiple statements.
What are volatile variables in c?
What are multibyte characters?