What does 2n 4c mean?
No Answer is Posted For this Question
Be the First to Post Answer
what do you mean by inline function in C?
Why is the code below functioning. According to me it MUST NOT.
Can we change the value of #define in c?
Are the outer parentheses in return statements really optional?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
Explain how can I remove the trailing spaces from a string?
What compilation do?
7 Answers Geometric Software, Infosys,
enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?
Is a pointer a kind of array?
what would be the output of the following prog? Justify your answer? main() { unsigned char ch; unsigned char i; ch = -255; printf("%d",ch); i = -1; printf("%d",i); }
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.