What oops means?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
What are dangling pointers?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
wat is the output #define VOLEDEMORT _who_must_not_be_named int main() { printf("VOLEDEMORT"); }
How to reverse a linked list
1 Answers Aricent, Fidelity, IBM, TCS,
what is the difference between getch() and getchar()?
Write a program to generate the Fibinocci Series
if the area was hit by a virus and so the decrease in the population because of death was x/3 and the migration from other places increased a population by 2x then annually it had so many ppl. find our the population in the starting.
what is the difference between i++ and ++i?
12345 1234 123 12 1
What is the use of define in c?