What would the following code segment printint k = 8;docout << "k = " << k << "
";while k++ < 5;
a) 13
b) 5
c) 8
d) pointers
No Answer is Posted For this Question
Be the First to Post Answer
what is difference between null and nul in c language
What is the difference between ‘g’ and “g” in C?
Explain what is the advantage of a random access file?
What's the difference between DELETE TABLE and TRUNCATE TABLE commands?
What are the rules for the identifier?
What is floating point constants?
write a function to find whether a string is palindrome or not and how many palindrome this string contain?
Define function pointers?
Program to simulate second clock
Write a code to remove duplicates in a string.
Write a program to print factorial of given number without using recursion?
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }