C Programming and Technical Programming Definition

What is the sizeof(long int)

Read Solution (Total 5)

C Other Question

find the output
main()
{
printf("%d%d"size of ("Hcl
technologies"),strlen("HCL Technologies"));
}
Find the output for the following C program
fn f(x)
{ if(x<=0)
return;
else f(x-1)+x;
}