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
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
Is it better to use malloc() or calloc()?
What is d scanf?
Write a C Program to display the following menu: Menu 1. Display 2. Copy 3. Append 4. Exit Accept the choice (1-4) from the user, and perform the following tasks: Choice 1: Accept a file name from the user and display the file on screen Choice 2: Accept two file names, and copy first file to the second Choice 3: Accept two file names, and append second file to the first file Choice 4: Terminate the program
1 Answers Accenture, Concor, DMU, Satyam, Syntel, Tora,
Is null valid for pointers to functions?
char *p="name"; printf(p);
palindrome for strings and numbers----Can anybody do the prog?
6 Answers CTS, TCS, Vipro Lifescience Pvt,
What is structure pointer in c?
Explain the ternary tree?
Differentiate between new and malloc(), delete and free() ?
Linked lists -- can you tell me how to check whether a linked list is circular?
what is the difference between #include<stdio.h> and #include"stdio.h" ?