30/11/2016
We need some good C and Cpp progrommer for our projects . you will be paid very well .
Project will easy and moderate not too difficult and you will be paid for each project you do .
Please comment your whatsapp number or gmail id so we can contact you easily .
Thank you ,
Coding Point Team .
18/07/2015
what will be the output ?
answer without running on compiler !
int main()
{
printf("%d",sizeof('a'));
return 0;
}
23/12/2014
Eat, Sleep, code repeat :)
keep coding !
Competitive Programming
Problem solving competitions using computer programs.
31/07/2014
what will be the o/p of this c code?
int main()
{
char str[] = "%d %c", arr[] = "Codingpointing";
printf(str, 0[arr], 2[arr + 3]);
return 0;
}
31/07/2014
what is the output of the following c code :
char p[20];
char *s = "string";
int length = strlen(s);
int i;
for (i = 0; i < length; i++)
p[i] = s[length - i];
printf("%s", p);
26/07/2014
what is the output of the following c code, in Turoc c/c++ compiler:
main()
{
printf("%d %d %d",40000,400,40);
}
Answer with explanation!!
28/02/2014
Any thing wrong with this code ??
int main ()
{
char arr[] ="you try you get " ;
printf("%c",arr+2);
arr++;
printf("%s",arr);
return 0 ;
}
24/02/2014
Both are same or Different ...comment your answer !!
char str[]="lost world " ;
char *s ="lost world" ;
10/01/2014
Amazing site for learn Coding in easy way !! just visit once you will love it .
http://code.org/
The Hour of Code is here
Join millions of students to learn about the Hour of Code, the largest learning event in world history.
10/01/2014
Can you recognize this Language ...Comment your answer
02/10/2013
int main()
{
int a[]={65,66,67,68,69};
printf("%d",strlen(a));
return 0;
}
o/p with reason