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
Lists the benefits of c programming language?
What is variable and explain rules to declare variable in c?
11. Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
how to generate sparse matrix in c
what is the difference between %d and %*d in c languaga?
second highest number in a given set of numbers
which of 'arrays' or 'pointers' are faster?
What is the use of define in c?
Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We.....Are....Student “ Note: one .=1 Space Output: "We Are Student"
What does the c preprocessor do?
i want the code for printing the output as follows 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4