What is the difference between malloc() and calloc() function in c language?
What is structure in c language?
What type of function is main ()?
write a c program that if the given number is prime, and their rearrangement(permute) of that number is also prime. Ex: Input is "197" is prime Output: 791,917,179 is also prime. Please any one tell me tha code for that
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(“%d”,s.x); }
Hi can anyone tell what is a start up code?
6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1
Why shouldn’t I start variable names with underscores?
program to find the ASCII value of a number
Are the expressions * ptr ++ and ++ * ptr same?
Explain is it valid to address one element beyond the end of an array?
What is abstract data structure in c?
the expression a=30*1000+2768; evalutes to a) 32768 b) -32768 c) 113040 d) 0