What is a macro?
No Answer is Posted For this Question
Be the First to Post Answer
What is indirection? How many levels of pointers can you have?
What is Full Form of C and Why We use C
What is meant by 'bit masking'?
Write a function that accepts two numbers,say a and b and makes bth bit of a to 0.No other bits of a should get changed.
2 Answers Scientific Atlanta, Wipro,
Will Macros support multiple arguments ?
for (i <= 5 && i >= -1;++i; i > 0) { printf("%d ", i); }
What are the average number of comparisons required to sort 3 elements?
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
struct abc { unsigned int a; char b; float r; }; struct xyz { int u; struct abc tt; }ww; ww = (struct xyz*)malloc(sizeof(struct xyz)); will the memory be allocated for the inner structure also?
Is array name a pointer?
What is the most efficient way to store flag values?
what does ‘#include’ mean?