Explain how can I pad a string to a known length?
No Answer is Posted For this Question
Be the First to Post Answer
What is the purpose of type declarations?
main() { int i = -3,j=2,k=0,m; m= ++i || ++j && ++k; printf("%d%d%d",i,j,k,m); }
Differentiate between null and void pointers.
1) int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain the explain the output
Explain low-order bytes.
What are variables and it what way is it different from constants?
what is pointer?
13 Answers HCL, TCS,
what is a function pointer and how all to declare ,define and implement it ???
what is a headerfile?and what will be a program without it explain nan example?
#define MAX 3 main() { printf("MAX = %d \n",MAX ); #undef MAX #ifdef MAX printf("Vector Instituteā); #endif
How can I pad a string to a known length?
What is d'n in c?