Friday 6 April 2012

About this blog

Hello World,

I have started this blog so that student/job-seekers may find a comprehensive list of C/C++ programs at a single place to prepare for their interviews or just hone up their programming skills. This blog will contain most frequently asked C/C++ programs. I strongly recommend all the readers to please try out these programs before appearing for any interview.

I also encourage readers to post comments in case they have any doubt. I will try to respond at the earliest.

Happy Coding!!!

No comments:

Post a Comment

Write a program which reads a set of integers into an integer array and then prints "YES"if all of them are same otherwise print "NO".

#include<stdio.h> int main() { int a[10],M=0,i,n; printf("enter a value for n\n"); scanf("%d",&n); fo...