The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
No Answer is Posted For this Question
Be the First to Post Answer
void main() { int i=5; printf("%d",i+++++i); }
What are identifiers and keywords in c?
How to create struct variables?
Tell me what is null pointer in c?
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
What are the modifiers available in c programming language?
difference between string and array?
What are different storage class specifiers in c?
What kind of sorting is this? SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort
There are 8 billiard balls, and one of them is slightly heavier, but the only way to tell was by putting it on a weighing scale against another. What's the fewest number of times you'd have to use the scale to find the heavier ball?
String concatenation
Whats wrong with the following function char *string() { char *text[20]; strcpy(text,"Hello world"); return text; }