what is the use of macro program
Answer / chaitali anand tendulkar
Macro is preprocessor directives that are defined using #
define. The combination backslash/new line is deleted
before preprocessing begins, so the directives can be
spread over several physical lines. this lines should
constitute a single logical line.
Is This Answer Correct ? | 5 Yes | 2 No |
main() { char ch='356'; Printf("%d",ch); } *OUTPUT*:- -18 *Why?*
to get a line of text and count the number of vowels in it
When can a far pointer be used?
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We.....Are....Student “ Note: one .=1 Space Output: "We Are Student"
Why pointers are used?
what does ‘#include’ mean?
what r the cpu registers r ther?
Which of the Following will define a type NODE that is a node in a Linked list? A)struct node {NODE*next;int x;};type def struct node NODE; B)typedef struct NODE {struct NODE *next;int x;}; C)typedef struct NODE {NODE *next;int x;}; D)typedef struct {NODE *next;int x;}NODE;
What are the differences between new and malloc in C?
Is there a way to switch on strings?
write a c program for swapping two strings using pointer
int main(){ float f=8.0; if(f==8.0) printf("good"); else printf("bad"); } what is the answere and explain it?