List the difference between a "copy constructor" and a "assignment operator"?
No Answer is Posted For this Question
Be the First to Post Answer
write a program structure to find average of given number
the operator for exponencation is a.** b.^ c.% d.not available
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
2 Answers Aricent, Manipal University,
Switch (i) i=1; case 1 i++; case 2 ++i; break; case 3 --i; Output of i after executing the program
Explain enumerated types in c language?
hOW Can I add character in to pointer array of characters char *a="indian"; ie I want to add google after indian in the char *a
what is the c source code for the below output? 1 0 1 1 0 1 0 1 0 1 1 0 1 0 1
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300
Are local variables initialized to zero by default in c?
wat is the difference between a definition and declaration? float y;---it looks like a declaration..but it s a definition.how?someone explain
How is null defined in c?
what is the diff between the printf and sprintf functions?? and what is the syntax for this two functions ??