WHAT IS RTGS N MINIMUM AMT TO B TRANSFERD N WHAT R THE
CHARGES ON MINIMUM AMT N IN WHICH BANK WE CAN DO IT?
how to write a c program to print list of fruits in alpabetical order?
How can you read a directory in a C program?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
how to find your architecture is LittleEndian or BigEndian?
Why c is procedure oriented?
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
What does a pointer variable always consist of?
Define macros.
Write a program which returns the first non repetitive character in the string?
Explain function pointer with exapmles.
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?