What is c programing language?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the use of bit fieild.
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
WAP to accept basic salary of an employee? Calculate it HRA=25%,DA=30%,PF=30%&net salary display all contents?
6 Answers Finite Infotech, Lovely Professional University, Wipro,
What is logical error?
#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?
What is structure in c explain with example?
How can I determine whether a machines byte order is big-endian or little-endian?
List some basic data types in c?
What are volatile variables?
WHAT IS PRE POSSESSORS?
Can we access RAM? How? Whats the range of access? Similarly What are other hardware we can access?
what is the difference between call by value and call by reference?
5 Answers Genpact, Global Logic, Infosys,