Is it possible to run using programming C for Java
Application?
Answers were Sorted based on User's Feedback
Can two or more operators such as and be combined in a single line of program code?
Can we increase size of array in c?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
C passes By value or By reference?
5 Answers Geometric Software, Infosys,
How to define structures? ·
write a program to display the array elements in reverse order in c language
Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }
What do you know about the use of bit field?
given post order,in order construct the corresponding binary tree
How pointer is different from array?
What is maximum size of array in c?
What is strcmp in c?