Why c is called object oriented language?
No Answer is Posted For this Question
Be the First to Post Answer
Is flag a keyword in c?
How do you prevent buffer overflows in C?
write a program to read a number and print in words that is in sentence for example 21,219 then output is "twenty one thousand and two hundred nineteen" by using only control flow statements (only loops and switch case )?
write a program to swap two variables a=5 , b= 10 without using third variable
What is a example of a variable?
How to access or modify the const variable in c ?
16 Answers HCL, HP,
How many data structures are there in c?
who did come first hen or agg
What are the various types of control structures in programming?
How to write a program for swapping two strings without using 3rd variable and without using string functions.
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
What does printf does?