how do we remove the printed character in printf statement
and write next it it
Answer / bharat
use \br in the starting of next printf statement..
| Is This Answer Correct ? | 1 Yes | 0 No |
What is boolean in c?
What is the value of c?
What are the storage classes in C?
x=2,y=6,z=6 x=y==z; printf(%d",x)
13 Answers Bharat, Cisco, HCL, TCS,
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
how to construct a simulator keeping the logical boolean gates in c
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database
2 Answers TCS, Unisys, Webyog,
When the macros gets expanded?
if array a conatins 'n' elements and array b conatins 'n-1' elements.array b has all element which are present in array a but one element is missing in array b. find that element.
18 Answers Parexel, Ram Infotech, Zycus Infotech,
What is dynamic dispatch in c++?
What are the types of i/o functions?
What is the difference between functions abs() and fabs()?