What is the use of structure padding in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are the similarities between c and c++?
What is the purpose of the statement: strcat (S2, S1)?
2.Given the short c program that follows a. make a list of the memory variables in this program b.which lines of code contain operations that change the contents of memory? what are those operations? Void main( void) { Double base; Double height; Double area; Printf(“enter base and height of triangle :”); Scanf(“%lg”, &base); Scanf(“%lg”, &height); Area=base*height/2.0; Printf(“the area of the triangle is %g \n”,area); }
How do I get an accurate error status return from system on ms-dos?
Explain how do you determine a file’s attributes?
Given an array of characters, how would you reverse it? How would you reverse it without using indexing in the array?
given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)
c program to print a name without using semicolon
What is far pointer in c?
Explain how can you restore a redirected standard stream?
i want to know aptitude questions,technical questions
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }