while initialization of array why we use a[][2]
why not a[2][]...?
No Answer is Posted For this Question
Be the First to Post Answer
control 50 devices which has 2 states on and off.using bitwise operator.plz answer it its urgent
how we do lcm of two no using c simple if while or for statement
class foo { public: static int func(const char*& p) const; }; This is illegal, why?
Explain pointers in c programming?
void swap(int a,int b) { a=a+b; b=a-b; a=a-b; } in this code always gives the same result for all case
What is printf () in c?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
Explain what?s happening in the first constructor: public class c{ public c(string a) : this() {;}; public c() {;} } How is this construct useful?
why we shiuld use main keyword in C
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Explain how can I pad a string to a known length?
Which is the memory area not included in C program? give the reason