Why calloc is better than malloc?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what are multibyte characters?
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
Where is c used?
#include<stdio.h> int f(int,int); int main() { printf("%d",f(20,1)); return 0; } int f(int n,int k) { if(n==0) return 0; else if(n%2)return f(n/2,2*k)+k; else return f(n/2,2*k)-k; } how this program is working and generating output as 9....?
What is the difference between Printf(..) and sprint(...) ?
What is external and internal variables What is dynamic memory allocation what is storage classes in C
please give me some tips for the placement in the TCS.
How to find the digits truncation when assigning the interger variable to the character variables. like int i=500; char x = i : here we have truncation. how to find this. another ex: i =100; char x=i. here we do not have truncation.
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }
What is main () in c?
What is the difference between arrays and pointers?
write a “Hello World” program in “c” without using a semicolon?