any C program contains only one function, it must be
a) void ()
b) main ()
c) message ()
d) abc ()
No Answer is Posted For this Question
Be the First to Post Answer
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
the operator for exponencation is a.** b.^ c.% d.not available
Write a Program to print this triangle: * ** * **** * ****** * ******** * ********** use two nested loops.
12 Answers MIT, TCS,
Write the syntax and purpose of a switch statement in C.
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
what will be the output of this program? #include<stdio.h> #define cube(x) x*x*x void main() { int i,j=5; i=cube(j+3); printf("i=%d",i); }
how can i get the output 54321 4321 321 21 1 in c programming........???? pls help......
Why do we need a structure?
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
can we print any string without using terminator?
How is a structure member accessed?