It is generally asked in interviews to check if a number can be converted into 2's power or not. For e.g 8= 2^3 16=2^4 and so...
-
0
he C preprocessor modifies a source code file before handing it over to the compiler. You're most likely used to using the preprocessor...
-
0
The memset() Function To set all the bytes in a block of memory to a particular value, use memset(). The function prototype is void * me...
-
0
Interviewers often ask can you connect C/C++ with database or not? It is tricky for those who haven't done it before. But the answer...
-
0
What Resume Screeners Look For Resume screeners look for the same things that interviewers do: »»Are you smart? »»Can you code? That m...
-
0
Following are the references for some C quiz websites. Point of giving you the link is something different. I want you to take quiz from t...
Tags
- Advanced (16)
- C (16)
- c advanced concepts (16)
- c for geeks (16)
- C interview questions (16)
- Concepts (16)
- files (1)
- Interview questions (16)
- libraries (1)
- macros (1)
- preprocessor (1)
- questions asked in tally interview (16)
Total Viewers
Blog Archive
-
►
2012
(55)
- ► 10/28 - 11/04 (1)
- ► 10/07 - 10/14 (2)
- ► 09/02 - 09/09 (4)
- ► 08/26 - 09/02 (3)
- ► 08/19 - 08/26 (4)
- ► 08/12 - 08/19 (9)
- ► 08/05 - 08/12 (10)
- ► 07/29 - 08/05 (8)
- ► 07/22 - 07/29 (14)
Authors
Online Friends
Be a part of our C - Family
Popular Posts
-
Interviewers often ask can you connect C/C++ with database or not? It is tricky for those who haven't done it before. But the answer...
-
The memset() Function To set all the bytes in a block of memory to a particular value, use memset(). The function prototype is void * me...
-
Whenever you define a C function, its name is globally visible by default. You can prefix the function name with the redundant extern k...
-
1.1 Implement an algorithm to determine if a string has all unique characters. What if you can not use additional data structures? _ ___...
-
#include<stdio.h> void main() { int a; a=300*300/300; printf("a=%d",a); } output is: 81 in turbo c++ compile...
-
In C language Strings are defined as an array of characters or a pointer to a portion of memory containing ASCII characters. A string in ...
-
In this chapter, we'll meet malloc , C's dynamic memory allocation function, and we'll cover dynamic memory allocation in som...
-
The problems in C are not confined to just the language. Some routines in the standard library have unsafe semantics. This was dramatical...
-
1. There can be atleast 31 arguments in the function call 2. There can be atleast 509 lines of code in any C program. 3. There can be atl...
-
#include<stdio.h> void main() { int x=3,y; y=++x * ++x * ++x; printf("y=%d",y); } output:- 216 ++x will mak...
