Is c easy to learn?
No Answer is Posted For this Question
Be the First to Post Answer
What are volatile variables in c?
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.
Find occurence of a character in a sting.
Explain what is wrong with this program statement? Void = 10;
what is calloc and malloc?
Why we not create function inside function.
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
Why doesn't C support function overloading?
How will you delete a node in DLL?
Reverse the bit order in a single macro. eg. i/p = 10010101 --> o/p = 10101001
how to find out the reverse number of a digit if it is input through the keyboard?
What is meant by global static? why we have to use static variable instead of Global variable