post new interiew question and aptitude test papers
How does normalization of huge pointer works?
can anyone please tell me wat is backlogs... i was looking for the job openings where i read this.. eligibility criteria minimum 70% in degree without backlogs. is that arrear.. if so is it standing arrear or history of arrears... please help me...
11 Answers CTS, Indian Navy, L&T, Microsoft, SSB, TCE, TCS,
can we execute the program with the object file
how to print 2-D array using a single for loop?
2 Answers Mind Tree, TCS, Value Labs,
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
What is the difference between typeof(foo) and myFoo.GetType()?
Explain the use of fflush() function?
What is string concatenation in c?
What is meant by preprocessor in c?
How many loops are there in c?
#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.
Should a function contain a return statement if it does not return a value?