What is methods in c?
No Answer is Posted For this Question
Be the First to Post Answer
What does the && operator do in a program code?
explain what is a newline escape sequence?
What is structure in c explain with example?
What is ambagious result in C? explain with an example.
what is an ERP?
What is const and volatile in c?
Why does everyone say not to use scanf? What should I use instead?
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
how to find that no is int or float?
What is a structural principle?
Which is an example of a structural homology?
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }