related to rdbms query .
Answers were Sorted based on User's Feedback
Answer / chaitaligosai
how many applicants appeared in the java programming test at
chennai in the month of febryary
| Is This Answer Correct ? | 1 Yes | 0 No |
which one is not preprocessor directive a)#if b)#elif c)#undef d)#pragma
16 Answers Accenture, Infosys, TCS, Wipro,
Are enumerations really portable?
What is the difference between if else and switchstatement
Diff between for loop and while loop?
#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }
write a program to find out prime number using sieve case?
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
How do you write a program which produces its own source code as its output?
what is difference between array,strutter,union and pointers
3 Answers CTS, Lovely Professional University, Mannar Company,
What is meaning of tree
What are directives in c?