why we are using float in C
Answers were Sorted based on User's Feedback
Write a program to print the following series 2 5 11 17 23 31 41 47 59 ...
read an array and search an element
#include<stdio.h> int main() { int i=0,j=1,k=2,m,n=0; m=i++&&j++&&k++||n++; printf("%d,%d,%d,%d,%d",i,j,k,m,n); }
12 Answers Capital IQ, Sasken,
In which layer of the network datastructure format change is done
how c source file in converted to exe file
two variables are added answer is stored on not for third variable how it is possible?
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Find the Outputs?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
When I tried to go into a security sites I am denied access and a message appeared saying 'applet not initialize'. How can I rectify this problem.
Why should I prototype a function?
what are the advantages & disadvantages of unions?