Answer Posted / anupam n singh
c is procedural oriented language or strutured oriented
language .
c++ is object oriented programing language
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
What is the most efficient way to count the number of bits which are set in an integer?
What is bin sh c?
Explain b+ tree?
Differentiate between static and dynamic modeling.
What is time null in c?
What is property type c?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
What is the explanation for prototype function in c?
What is the use of parallelize in spark?
What are the advantages of c preprocessor?
Explain the difference between malloc() and calloc() function?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
What are lookup tables in c?
What is the difference between fread and fwrite function?