How a string is stored in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the newline escape sequence?
What is a const pointer?
What is the sizeof () operator?
How do you print only part of a string?
what will be the output for the following program? main() { char ch = 'k'; char c; printf("%c",c); }
Is flag a keyword in c?
How can I make a program in c to print 'Hello' without using semicolon in the code?
9 Answers C DAC, Practical Viva Questions,
1.what are local and global variables? 2.what is the scope of static variables? 3.what is the difference between static and global variables? 4.what are volatile variables? 5.what is the use of 'auto' keyword? 6.how do we make a global variable accessible across files? Explain the extern keyword? 7.what is a function prototype? 8.what does keyword 'extern' mean in a function declaration?
write a program in c to find out the sum of digits of a number.but here is a condition that compiler sums the value from left to right....not right to left..
how to print a statement in c without use of console statement ,with the help of if statement it should print
Explain what is wrong in this statement?
what is the difference between #include<> and #include”…”?