What are macros in C?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
Macros are preprocessor directives defined using #define to create constants or functions.
| Is This Answer Correct ? | 0 Yes | 0 No |
Macros are preprocessor directives defined using #define to create constants or functions.
| Is This Answer Correct ? | 0 Yes | 0 No |
write a program in c language that uses function to locate and return the smallest and largest integers in an array,number and their position in the array. it should also find and return the range of the numbers , that is , the difference between the largest number and the smallest.
What is the best way of making my program efficient?
What is the difference b/w Structure & Class?
Write a program that his output * *** *****
1)what is the error in the following stmt where str is a char array and the stmt is supposed to traverse through the whole character string str? for(i=0;str[i];i++) a)There is no error. b)There shud be no ; after the stmt. c)The cond shud be str[i]!='\0' d)The cond shud be str[i]!=NULL e)i shud be initialized to 1
What is cohesion in c?
How can I split up a string into whitespace-separated fields?
what is available in C language but not in C++?
10 Answers CTS, TCS,
simple program of graphics and thier outpu display with a want what is out put of graohics in c language
what will be the out put. #include<stdio.h> void main() { printf("Output:"); printf(1+"vikashpatel"); }//output: ikashpatel
Write a c program to Find the name that you entered is male name or female name? Such as Sunjay is name of male and Payal is name of female
What is keyword with example?