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
write a code for large nos multilication (upto 200 digits)
what is the use of #pragma pack, wer it is used?
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
Is it cc or c in a letter?
Do you know pointer in c?
Write a program in c using only loops to print * * * * * *******
#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?
what is the difference between const volatile int i & volatile const int j;
Do pointers store the address of value or the actual value of a variable?
Here is a neat trick for checking whether two strings are equal
Why c is a mother language?
CopyBits(x,p,n,y) copy n LSBs from y to x starting LSB at 'p'th position.