GeekInterview.com
  I am new, Sign me up!
 

C Interview Questions


C Interview Questions

Questions: 453
Comments: 1523
 Showing Questions 1-10 of 453 Questions
[1] 2 3 4 5 6 7 8 9 10 Next >>
 Sponsored Links

 
 C Interview Questions
Sorting Options :  

Explain How Terminate & Stay Resident (TSR) and Offline programming differ from one another. 
View Question | Asked by : ramji70

How will you execute a file from another C program through C programming without system command?  

printf("%d%d",f1(),f2());What is the sequence of function execution of the above statement. 1. printf, f1(), f2()2. printf, f2(), f1()3. f1(), f2(), printf4. f2(), f1(), printf. 
Latest Answer: Let's understand this by going through the following code#includeint f1();int f2();void main() { printf("%dt%d",f1(),f2());}int f1(){ printf("f1() enteredn"); return 4;}int f2(){ printf("f2() ...
Read Answers (3) | Asked by : pn_5449

Base class has some virtual method and derived class has a method with the same name. If we initialize the base class pointer with derived object, calling of that virtual method will result in which method 
Latest Answer: As explained, you have assigned the base class pointer to the derived class object, the derived class method will get called. ...
Read Answers (3) | Asked by : dilzmail

Write a C programme that read 30 integer numbers into one dimension array then using a function to sort them in desinding order (this function should use another function to exchange any two elements int 
Latest Answer: Hi ,      Let break the question into three parts      1-Read 3o intgers and store them in one dimensional array.      2. Write one function to sort them in descending order.Let ...
Read Answers (4) | Asked by : Narmeen

Write the implementation of Fix function? fix(2.5) = 2 and fix(-2.25) = -3, this is the expected result. Write the code to implement this behaviour? 
Latest Answer: int fix(float f1){       return(floor(f1));} ...

How will you execute shell command without using system command in C-language? Write a program to execute ls -l and redirect the output to a file, without using system command ? 
Latest Answer: You can use exec family of system calls to get the job done. Its a nice experience, go ahead and explore it. ...

Why it is not possible to create pointer to unsingned int? 
Latest Answer: You can create a pointer to unsigned int. ...
Read Answers (2) | Asked by : ak209728

In C if a variable is not assigned a value then why does it take garbage value? 
Latest Answer: This happens only in case of local varibales. As memory for local variables are allocated on stack and while allocating the memory the runtime system does not clear the memory before allocating it to the variable unlike in case of allocating memory in ...
Read Answers (2) | Asked by : ajayvyas

What is code/binary portability? 
Latest Answer: Code portability is generally defined as C code (in the case of C) that adheres to the rules of the C standards and is Architecture (Pentium, PowerPC, MIPS, etc) as well as Platform (PC, Mac OS, Linux, etc) independent.  All you need to do with code ...
Read Answers (1) | Asked by : goksvr

View page [1] 2 3 4 5 6 7 8 9 10 Next >>

Ask A Question
Go Top
 Sponsored Links

 
Sponsored Links

 
Ask Question
You must login to Ask Question or Register your free account

Category:

 
Question Title:


Question in Detail:

Add this to my Subscribed Questions (?)
Send me email when new answer is posted (?)

 
Expert Members
# User Name Count
1jintojos 29
2dasam 27
3abhimanipal 22
4burraganesh 20
5baseersd 20
6suji 20
7pbchaudhari 19
8SomGollakota 17
9yzesong 17
10vipin gupta 15
Subscribe
Get Latest Updates Via RSS Reader or by Email
 Forum Discussion Subscribe to Forum Discussions Via E-Mail Latest Forum Discussions Subscribers
 Knowledge Base Subscribe to Knowledge Base Series Via E-Mail Knowledge Base Subscribers
 Learning Series Subscribe to GeekInterview Learning Series Via EMail Learning Series Subscribers
 Freelance Jobs Subscribe to GeekInterview Freelance Jobs Via EMail Latest Freelance Jobs Subscribers
 GeekInterview Blog Subscribe to GeekInterview Blog Via EMail GeekInterview Blog Subscribers
 Testing Interview Questions Subscribe to Testing Interview Questions Via EMail Testing Interview Questions Subscribers
 Oracle Interview Questions Subscribe to Oracle Interview Questions Via EMail Oracle Interview Questions Subscribers
 Java Interview Questions Subscribe to Java Interview Questions Via EMail Java Interview Questions Subscribers
 Latest Placement Papers Subscribe to Latest Placement Papers Placement Papers Subscribers
 Free Training Subscribe to Free Training Via EMail Free Training Subscribers
 Learn AJAX Subscribe to AJAXwith.com Via EMail AJAXwith Subscribers
About Us -  Privacy Policy -  Terms and Conditions -  Contact -  Ask Question -  Propose Category -  Site Updates 

Copyright © 2005 - 2009 GeekInterview.com. All Rights Reserved

Page copy protected against web site content infringement by Copyscape