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

Tell me with an example the self-referential structure?

950

Tell me what is the purpose of 'register' keyword in c language?

973

Explain bitwise shift operators?

1176

Can you please explain the difference between syntax vs logical error?

1136

Tell me the use of bit field in c language?

1021

What is ## preprocessor operator in c?

1031

What is the scope of static variables in c language?

1 1325

What are the properties of union in c?

1003

What is the difference between exit() and _exit() function?

998

What is typedf?

1073

Can we add pointers together?

1003

Explain void pointer?

982

What is malloc() function?

1100

Do you know what are bitwise shift operators in c programming?

1065

What is the difference between strcpy() and memcpy() function in c programming?

1034


Post New C Questions

Un-Answered Questions { C }

Is malloc memset faster than calloc?

1020


Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer

4311


State the difference between realloc and free.

1036


What is main return c?

940


What are the similarities between c and c++?

1012


How do you determine whether to use a stream function or a low-level function?

1085


What are local static variables? How can you use them?

1085


How can you tell whether a program was compiled using c versus c++?

1051


Can i use “int” data type to store the value 32768? Why?

1148


using only #include and #include Write a program in C that will read an input from the user and print it back to the user if it is a palindrome. The string ends when it encounters a whitespace. The input string is at most 30 characters. Assume the string has no spaces and distinguish between and lowercase. So madam is a palindrome, but MadAm is not a palindrome. Use scanf and %s to read the string. Sample Test: Enter a string: madam madam is a palindrome. Enter a string: 09023 09023 is not a palindrome.

1773


the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none

1005


What is zero based addressing?

1118


What are comments and how do you insert it in a C program?

1202


Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant

1088


Is null a keyword in c?

1144