What is the sizeof () operator?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to interchange the value between two variable without using loop
Is exit(status) truly equivalent to returning the same status from main?
SRUCTURE PROGRAMMING
Explain why can’t constant values be used to define an array’s initial size?
what are threads ? why they are called light weight processes ? what is the relation between process and threads ?
What is calloc()?
what is the advantage of function pointer
16 Answers CMC, CS, Freshdesk, L&T, LG Soft, Matrix, TCS,
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
I have one doubt. What does below statement mean? #define sizeof(operator) where operator can be int or float etc. Does this statement meaningful and where it can be used?
how to find string length wihtout using c function?
how to find that no is int or float?
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }