general for is %wd,f-d; in this system "w" means
a) 'w' represent total width of digits
b) 'w' represent width which includes the digits before,after decimal place and the decimal point
c) 'w' represent width which includes the digits before only
d) 'w' represent width after decimal place only
No Answer is Posted For this Question
Be the First to Post Answer
if the total selling price of 15 items and the total profit earned on them is input through the keyboard, write a program to find the cost price of one of the item
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"
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
how does the for loop work actually..suppose for the following program how it ll work plz explain to me for(i=5;i>=0;i--) prinf(i--);
main() { int i; printf("%d",i^i); }
How the processor registers can be used in C ?
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
How would you print out the data in a binary tree, level by level, starting at the top?
WAP to accept rollno,course name & marks of a student & display grade if total marks is above 200?
what is stack , heap ,code segment,and data segment
Is swift based on c?
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these