What is register variable in c language?
int main() { int i=-1,j=-1;k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d%d%d%d%d",i,j,k,l,m); }
How can I split up a string into whitespace-separated fields?
can we initialize all the members of union?
How can I do graphics in c?
When should structures be passed by values or by references?
Go through the following code sinippet char a[20]; a="Hello Orcale Test"; will this compile?
what is the difference between. system call and library function?
Write code for initializing one dimentional and two dimentional array in a C Program?
5 Answers Deshaw, Edutech, GMD,
Suppose I want to write a function that takes a generic pointer as an argument and I want to simulate passing it by reference. Can I give the formal parameter type void **, and do something like this? void f(void **); double *dp; f((void **)&dp);
O,T,T,F,F,S,S,E,N,?,?,?,T,F,F,S,S,E,N
To what value do nonglobal variables default? 1) auto 2) register 3) static
Given a string write a program to print all alphabetical characters in the order of their occurance first,followed by the sum of the numeric characters then followed by the special characters in the order of their occurance.
1 Answers College School Exams Tests, Wipro,