9.how do you write a function that takes a variable number
of arguments? What is the prototype of printf () function?
10.How do you access command-line arguments?
11.what does ‘#include<stdio.h>’ mean?
12.what is the difference between #include<> and #include”…”?
13.what are # pragma staments?
14.what is the most appropriate way to write a
multi-statement macro?

Answer Posted / 2028

The above reply is an vague idea for the concept idea some
details may be with an example will be an good input from
nay one of us

Is This Answer Correct ?    0 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

write an interactive C program that will encode or decode a line of text.To encode a line of text,proceed as follows. 1.convert each character,including blank spaces,to its ASCII equivalent. 2.Generate a positive random integer.add this integer to the ASCII equivalent of each character.The same random integer will be used for the entire line of text. 3.Suppose that N1 represents the lowest permissible value in the ASCII code,and N2 represents the highest permissible value.If the number obtained in step 2 above(i.e.,the original ASCII equivalent plus the random integer)exceeds N2,then subtract the largest possible multiple of N2 from this number,and add the remainder to N1.Hence the encoded number will always fall between N1 and N2,and will therefore always represent some ASCII character. 4.Dislay the characters that correspond to the encoded ASCII values.  The procedure is reversed when decoding a line of text.Be certain,however,that the same random number is used in decodingas was used in encoding.

2721


What happens if a header file is included twice?

598


What is the explanation for cyclic nature of data types in c?

648


What is character constants?

714


How many main () function we can have in a project?

614






What is the difference between struct and typedef struct in c?

657


Explain how can a program be made to print the line number where an error occurs?

694


What is #include stdlib h?

616


How can you restore a redirected standard stream?

610


What is non linear data structure in c?

577


What is a constant?

635


How can I find out if there are characters available for reading?

647


How to declare a variable?

572


Write a program to identify if a given binary tree is balanced or not.

685


What is the use of c language in real life?

530