Explain the term printf() and scanf() used in c language?
No Answer is Posted For this Question
Be the First to Post Answer
How does the assert() function work?
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.
Given an array of characters which form a sentence of words, give an efficient algorithm to reverse the order of the words (not characters) in it?
Do you know the use of 'auto' keyword?
What is wrong with this program statement? void = 10;
When should a type cast be used?
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
How do you construct an increment statement or decrement statement in C?
What is null character in c?
What is a macro, and explain how do you use it?
What are the advantages and disadvantages of pointers?
Why enum is used in c?