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

Are the outer parentheses in return statements really optional?

1113

Are pointers really faster than arrays?

1025

How do I swap bytes?

1069

How can I get random integers in a certain range?

1063

How can I determine whether a machines byte order is big-endian or little-endian?

1056

Can I initialize unions?

1037

How can this be legal c?

1084

How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?

1103

What should malloc(0) do?

1116

What is the right type to use for boolean values in c?

1030

How can I delete a file?

1061

I came across some code that puts a (void) cast before each call to printf. Why?

1218

What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?

1073

Array is an lvalue or not?

1121

What is the difference between memcpy and memmove?

1016


Post New C Questions

Un-Answered Questions { C }

When should the register modifier be used? Does it really help?

963


#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }

1153


What are the advantages of using new operator as compared to the function malloc ()?

1334


write an interactive C program that will encode or decode a line of text.To encode a line of text,proceed as follows. 1.convert each character,including blank spaces,to its ASCII equivalent. 2.Generate a positive random integer.add this integer to the ASCII equivalent of each character.The same random integer will be used for the entire line of text. 3.Suppose that N1 represents the lowest permissible value in the ASCII code,and N2 represents the highest permissible value.If the number obtained in step 2 above(i.e.,the original ASCII equivalent plus the random integer)exceeds N2,then subtract the largest possible multiple of N2 from this number,and add the remainder to N1.Hence the encoded number will always fall between N1 and N2,and will therefore always represent some ASCII character. 4.Dislay the characters that correspond to the encoded ASCII values.  The procedure is reversed when decoding a line of text.Be certain,however,that the same random number is used in decodingas was used in encoding.

3472


What is d'n in c?

1120


What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.

2258


Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.

1278


Explain 'bus error'?

1091


Write a program of prime number using recursion.

1084


How do I create a directory? How do I remove a directory (and its contents)?

1166


Is void a keyword in c?

986


Can you explain what keyboard debouncing is, and where and why we us it? please give some examples

2194


Explain built-in function?

1132


Is c still used?

1047


#include int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20

1719