I have one doubt.
What does below statement mean?
#define sizeof(operator)
where operator can be int or float etc.
Does this statement meaningful and where it can be used?
The following define overrides all the occurrences of sizeof and replaces by blank, there is no definition of sizeof on the right hand side of expression
#define sizeof(operator)
example
printf("val = %d", sizeof(int)); is made to look like
printf("val = %d", ); // replaced by blank, int not processed
// causes compilation error
| Is This Answer Correct ? | 0 Yes | 0 No |
Is int a keyword in c?
Write a program to write a given string in maximum possibilities? i.e str[5]="reddy"; i.e we can write this string in 120 ways for that write a program
A array contains dissimilar element how can we count, and A array contains dissimilar element how can we store in another array with out repetition.
Describe newline escape sequence with a sample program?
Do character constants represent numerical values?
Can you mix old-style and new-style function syntax?
Is malloc memset faster than calloc?
What is a stream in c programming?
Combinations of fibanocci prime series
True or false: If you continuously increment a variable, it will become negative? 1) True 2) False 3) It depends on the variable type
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?
Explain what are bus errors, memory faults, and core dumps?