Can we use any name in place of argv and argc as command line arguments?
No Answer is Posted For this Question
Be the First to Post Answer
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.
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
How can I run c program?
Explain about C function prototype?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
write a program to convert a expression in polish notation (postfix) to inline (normal)
WHAT IS THE DIFFERENCE BETWEEN malloc() and calloc() in c file management?
28 Answers 3D PLM, Code Studio, Deltech, IBM,
When is a “switch” statement preferable over an “if” statement?
How to explain the final year project as a fresher please answer with sample project
How do you initialize pointer variables?
How we add our function in liabrary as liabrary function. Exp. we want use our int factorical(int); function as int pow(int,int); function working in math header file.
What is multidimensional arrays