How Many Header Files in c?
Answers were Sorted based on User's Feedback
How can I use a preprocessorif expression to ?
how do you programme Carrier Sense Multiple Access
what is the difference between definition and declaration? give me some examples.
Was 2000 a leap year?
What is string length in c?
Write a program to remove the C comments(/* */) and C++ comments(//) from a file. The file should be declared in command line.
write a program to convert a expression in polish notation (postfix) to inline (normal)
int j =15,i; for (i=1; 1<5; ++i) {printf ("%d%d ",j,i); j = j-3; }
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
Explain what is output redirection?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300
What's wrong with "char *p = malloc(10);" ?