Explain bit masking in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain how can type-insensitive macros be created?
How does #define work?
write a c program to find largest of three numbers using simple if only for one time.
What is the difference between constant pointer and constant variable?
i got 75% in all semester am i eligible for your company
What extern c means?
What is table lookup in c?
Explain how can you check to see whether a symbol is defined?
2.Given the short c program that follows a. make a list of the memory variables in this program b.which lines of code contain operations that change the contents of memory? what are those operations? Void main( void) { Double base; Double height; Double area; Printf(“enter base and height of triangle :”); Scanf(“%lg”, &base); Scanf(“%lg”, &height); Area=base*height/2.0; Printf(“the area of the triangle is %g \n”,area); }
What is pragma in c?
write a program to reverse the words in the sentence.NOTE:not reverse the entire string but just the occurance of each word
a value that does not change during program execution a) variabe b) argument c) parameter d) none