What are the preprocessor categories?
Answer / Ved Prakash Yadav
"In C, there are three categories of preprocessing tokens: identifiers, constants, and operators. Identifiers refer to names that you create for variables, functions, labels, etc.nConstants include literal values like numbers, characters, strings, and symbols like #define.nOperators are symbols that indicate operations like arithmetic (+), relational (==), assignment (=), and logical (&&)."
| Is This Answer Correct ? | 0 Yes | 0 No |
What are the average number of comparisons required to sort 3 elements?
Multiply an Integer Number by 2 Without Using Multiplication Operator
1)what are limitations for recursive function? 2)write a program to read a text file and count the number of characters in the text file
write a c program to store and print name,address,roll.no of a student using structures?
What are header files and what are its uses in C programming?
#include <stdio.h> int main ( int argc, char* argv [ ] ) { int value1 = 10; int value2 = 5; printf ( "\n The sum is :%d", value1 | value2 ); } This is the answer asked by some one to add two numbers with out using arithmetic operator?Yes this answer is write it given out put as 15.But how????? what is need of following line? int main ( int argc, char* argv [ ] ) how it work?what is the meaning for this line? please explain me.Advance thanks
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
Write a program to generate random numbers in c?
Can a pointer point to null?
Explain why C language is procedural?
what does static variable mean?
Struct(s) { int a; long b; } Union (u) {int a; long b; } Print sizeof(s)and sizeof(u) if sizeof(int)=4 and sizeof(long)=4