What is the difference between formatted&unformatted i/o functions?
No Answer is Posted For this Question
Be the First to Post Answer
How to write a code for random pick from 1-1000 numbers? The output should contain the 10 numbers from the range 1-1000 which should pick randomly, ie ,for each time we run the code we should get different outputs.
What is the general form of a C program?
write a function for strtok()??
Explain what is wrong with this program statement? Void = 10;
What is difference between Structure and Unions?
How can I discover how many arguments a function was actually called with?
Write a program to print distinct words in an input along with their count in input in decreasing order of their count
what is the use of call back function in c?tell me with example
How do I send escape sequences to control a terminal or other device?
what are the various memory handling mechanisms in C ?
What are linker error?
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.