What is function what are the types of function?
No Answer is Posted For this Question
Be the First to Post Answer
write a c program to print "Welcome" without using semicolon in the whole program ??
What is the meaning of typedef struct in c?
How can you convert integers to binary or hexadecimal?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
what is data structure
any string of bits of length 'n' represents a unique non- negative integer between.............?
What are the features of the c language?
Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?
main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?
Is it fine to write void main () or main () in c?
whether itis a structured language?
Write one statement equalent to the following two statements x=sqr(a); return(x); Choose from one of the alternatives a.return(sqr(a)); b.printf("sqr(a)"); c.return(a*a*a); d.printf("%d",sqr(a));