Answer Posted / srinath
# is symbol of the Preprocessor directive means it tells the
compiler i will execute before compilation time.the
preprocessor directives like
#include<stdio.h>
# define MAX 10
Srianth
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What will be the outcome of the following conditional statement if the value of variable s is 10?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
Explain main function in c?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
Explain low-order bytes.
What is a macro?
What are formal parameters?
What is a stream water?
What is variable initialization and why is it important?
Explain how do I determine whether a character is numeric, alphabetic, and so on?
What are the disadvantages of a shell structure?
What are the 5 types of organizational structures?
How can I send mail from within a c program?
Are the variables argc and argv are always local to main?
Write a code to determine the total number of stops an elevator would take to serve N number of people.