What is the best style for code layout in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is the advantage of software development
Give basis knowledge of web designing ...
How can I determine whether a machines byte order is big-endian or little-endian?
What is the data segment that is followed by c?
#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.
how to build a exercise findig min number of e heap with list imlemented?
What does %d do?
Explain how does free() know explain how much memory to release?
write a program which counts a product of array elements lower than 10.
Write a program to print factorial of given number using recursion?
Is it possible to have a function as a parameter in another function?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...