What is volatile variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is realloc in c?
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); }
Why is #define used?
What are comments and how do you insert it in a C program?
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }
Is multithreading possible in c?
What is memcpy() function?
hi, which software companys will take,if d candidate's % is jst 55%?
can anyone please tell about the nested interrupts?
52.write a “Hello World” program in “c” without using a semicolon? 53.Give a method to count the number of ones in a 32 bit number? 54.write a program that print itself even if the source file is deleted? 55.Given an unsigned integer, find if the number is power of 2?
25 Answers Datamatics, Solartis, TCS, ThinkBox, Trine,
What are the features of c language?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?