How can I remove the leading spaces from a string?
No Answer is Posted For this Question
Be the First to Post Answer
WAP to find that given no is small or capital
C passes By value or By reference?
5 Answers Geometric Software, Infosys,
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
5 Answers TCS, Vimukti Technologies,
What are the functions to open and close file in c language?
What is graph in c?
What is the benefit of using an enum rather than a #define constant?
Difference between data structure and data base.
7 Answers CTS, Value Labs, Zoho,
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
What are header files and what are its uses in C programming?
f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed
What is #ifdef ? What is its application?