What are derived data types in c?
No Answer is Posted For this Question
Be the First to Post Answer
Why do we use static in c?
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?
What is array in c with example?
code for replace tabs with equivalent number of blanks
I didn't count the ducks that I saw in line, but I do remember that one duck was in front of two ducks, another duck behind two ducks. How many ducks did I see?
why r u join this company? give solid resons.
16 Answers IBM, Infosys, TCS,
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
Write a program to check armstrong number in c?
What is scope rule in c?
How to find the usage of memory in a c program
What is an operator?
read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the vlaue after executing this code? a.200 b.1 c.-1 d.50