GeekInterview.com
  I am new, Sign me up!
 

C FAQs


C FAQs

Questions: 108
Comments: 151
 C FAQs Tags
 Showing Questions 61-70 of 110 Questions
<< Previous 3 4 5 6 [7] 8 9 10 11 Next >>
 Sponsored Links

 
 C FAQs
Sorting Options :  

Latest Answer: #include#includevoid main(){int x,y,z;clrscr();printf("enter the number");scanf("%d",&x);while(x>0){y=x%10;printf("%d",y);x=x/10;}getch();} ...
Read Answers (1) | Asked by : mcamuthu

View Question | Asked by : Pankaj sharma`

Latest Answer: the default argument and parameter for main function is "void" ...

with the program 
Latest Answer: void main(){   char s[10];    int i;   scanf("%s",s);   for(i=0;s[i]!='';i++);   printf("The length of the given string",--i);   getch();}thank you!!!!!!!!!!!!      ...

View Question | Asked by : Venkatesh

Latest Answer: typedef struct means : it tells the allies name of structEX:typedef struct{int data,y;float s;}sa;sa s1,s2;struct: struct is a keyword for define a multlple type variable ...
Read Answers (1) | Asked by : Bairavi

View Question | Asked by : chandu

Latest Answer: Function Declaration means telling the compiler what are the types of arguments that are passed toa function , what type of data type it will return. It is ended with a semicolon (;).Eg : int add(int , int);int add(int a, int b);Definition of a function ...
Read Answers (1) | Asked by : poonam

Latest Answer: void printBinary(int n){if (n>0){printBinary(n/2);printf("%c","01"[n%2]);}else{printf("n");}}int main(){int num;printf("Enter the number in decimal");scanf("%d",&num);printf("The binary equivalent ...

When dynamic allocation of memory is done by using malloc then how is the memory allocated in sequential or in some other format ?
View Question | Asked by : rpgubba

View page << Previous 3 4 5 6 [7] 8 9 10 11 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
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