Write a C/C++ program to show the result of a stored
procedure "PROC_RESET_MAIL" on database "USER_NOTIFY".

Answers were Sorted based on User's Feedback



Write a C/C++ program to show the result of a stored procedure "PROC_RESET_MAIL" on datab..

Answer / nalini

#include<stdio.h?

#include<conio.h>

void main()
{ int i=0; switch(i) { case 0: i++; printf("%d..",i); case
1: printf("%d..",i); case 1: printf("%d..",i); } }

Is This Answer Correct ?    5 Yes 5 No

Write a C/C++ program to show the result of a stored procedure "PROC_RESET_MAIL" on datab..

Answer / atulsingh_rathore

ANY ONE IF GIVE ME ANSWER PLEAS BECAUSE I WAS USING TURBO
C++ FOR THAT I DIDN't KNOW TAHT HOW I CONNECT TO MY SQL OR
OTHER VENDERS

Is This Answer Correct ?    10 Yes 19 No

Post New Answer

More C++ General Interview Questions

why is iostream::eof inside a loop condition considered wrong?

0 Answers  


Explain explicit container.

0 Answers  


Why we use #include conio h in c++?

0 Answers  


Can you be able to identify between straight- through and cross- over cable wiring? And in what case do you use straight- through and cross-over?

0 Answers  


What is volatile and pragma? When they are used?

1 Answers  






What is the difference between a definition and a declaration?

0 Answers  


What are the uses of static class data?

0 Answers  


What are the differences between new and malloc?

0 Answers  


Explain method of creating object in C++ ?

0 Answers   Wipro,


int main() { int i ,a[i]; i = 0; a[i] = 10; cout<< a[i] << endl; return 0; } What will be output of this program?

11 Answers   HCL, Mphasis,


What are the restrictions apply to constructors and destructors?

0 Answers  


Given the following function definition: int doit(int &x, int y, int &z) { x = 3*x; y = y + 5; z = x+y; return z - 4; } int a = 5, b = 7, c = 9, d = 11; d = doit(a,b,c);

2 Answers  


Categories