Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

C Interview Questions
Questions Answers Views Company eMail

the question is that what you have been doing all these periods (one year gap)

HCL,

2035

for(i=1;i>0;i++); printf("i=%d",i); what will be the answer????

7 14714

for(i=0;i=printf("Hello");i++); printf("Hello"); how many times how will be printed?????????

8 15560

How can we see the Expanded source code and compiled code for our source program in C?

1 9090

can we write a program in c for printf and scanf without using header file stdio.h

1 6661

what is use of loop?

Infosys,

10 10330

how to get the starting address of file stored in harddisk through 'C'program.

Siemens,

2 7631

Name the language in which the compiler of "c" in written?

Bajaj,

3 5680

Write a C++ program without using any loop (if, for, while etc) to print numbers from 1 to 100 and 100 to 1;

Accenture, Cisco, Egentec, HCL, Ideaz, Infosys, M-Systems, MYR, TCS,

18 39277

how to make c program without a libary? e.g.#include libary is not in c progaram.

2 5468

what are the general concepts of c and c++

2 4663

how to create c progarm without void main()?

NIIT,

1 5665

what type of language is C?

Microsoft,

13 40679

name the language for writing c compiler?

Microsoft,

3 5924

where does it flourished?

Microsoft,

1910


Post New C Questions

Un-Answered Questions { C }

What is pivot in c?

991


find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }

2279


Write a program to maintain student’s record. Record should not be available to any unauthorized user. There are three (3) categories of users. Each user has its own type. It depends upon user’s type that which kind of operations user can perform. Their types and options are mentioned below: 1. Admin (Search Record [by Reg. No or Name], View All Records, Insert New Record, Modify Existing Record) 2. Super Admin (Search Record [by Reg. No or Name], View All Records, Insert New Record, Modify Existing Record, Delete Single Record) 3. Guest (Search Record [by Reg. No or Name], View All Records) When first time program runs, it asks to create accounts. Each user type has only 1 account (which means that there can be maximum 3 accounts). In account creation, following options are required: Login Name: <6-10 alphabets long, should be unique> Password: <6-10 alphabets long, should not display characters when user type> Confirm Password: Account Type: Login Name, Password and Account Type should be stored in a separate file in encrypted form. (Encryption means that actual information should be changed and Decryption means that Encrypted information is changed back to the actual information) If any of the above mentioned requirement(s) does not meet then point out mistake and ask user to specify information again. When Program is launched with already created accounts, it will ask for user name and password to authenticate. On successful authentication, give options according to the user’s type.

1944


Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.

3657


Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].

1066


What is the explanation for the dangling pointer in c?

1077


Is boolean a datatype in c?

1027


How is a null pointer different from a dangling pointer?

985


What are the 5 organizational structures?

991


What is d scanf?

1034


What is restrict keyword in c?

1067


What are the benefits of c language?

1125


What is a program flowchart and how does it help in writing a program?

1100


What is volatile variable in c?

1067


we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?

1223