How do you print an address?
No Answer is Posted For this Question
Be the First to Post Answer
what are the facialities provided by you after the selection of the student.
what are non standard function in c
what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }
I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.
Explain what is meant by high-order and low-order bytes?
WAP – represent a char in binary format
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
wat is the difference between array and pointer?
main() { int a; a=++100; printf("%d",a); getch(); }
print ur name without using any semicolon in c/c++....
21 Answers Bosch, TCS, Wipro,
Explain in detail how strset (string handling function works )pls explain it with an example.