What is a macro?
No Answer is Posted For this Question
Be the First to Post Answer
What is %s and %d in c?
When you call malloc() to allocate memory for a local pointer, do you have to explicitly free() it?
What are the types of variables in c?
Tell us the difference between these two : #include"stdio.h" #include<stdio.h> define in detial.
why we are using float in C
What does & mean in scanf?
44.what is the difference between strcpy() and memcpy() function? 45.what is output of the following statetment? 46.Printf(“%x”, -1<<4); ? 47.will the program compile? int i; scanf(“%d”,i); printf(“%d”,i); 48.write a string copy function routine? 49.swap two integer variables without using a third temporary variable? 50.how do you redirect stdout value from a program to a file? 51.write a program that finds the factorial of a number using recursion?
Which one would you prefer - a macro or a function?
What is an anonymous union and where to apply that ?
What is meant by int fun const(int a, int b) { .... ... }
What is realloc in c?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?