What's the difference between constant char *p and char * constant p?
No Answer is Posted For this Question
Be the First to Post Answer
Explain following declaration int *P(void); and int (*p)(char *a);
Why doesn't C support function overloading?
i have to apply for rbi before that i need to know the the syllabus for the entrance questions. whethet it may be aps or techinical
Can we use any name in place of argv and argc as command line arguments?
What is the use of ?: Operator?
wat is the meaning of c?
What is the difference between a function and a method in c?
Write a program to accept a character & display its corrosponding ASCII value & vice versa?
what is function pointer?
9.how do you write a function that takes a variable number of arguments? What is the prototype of printf () function? 10.How do you access command-line arguments? 11.what does ‘#include<stdio.h>’ mean? 12.what is the difference between #include<> and #include”…”? 13.what are # pragma staments? 14.what is the most appropriate way to write a multi-statement macro?
Explain what?s happening in the first constructor: public class c{ public c(string a) : this() {;}; public c() {;} } How is this construct useful?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }