Write a program to swap two numbers without using third variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
Write a c program to build a heap method using Pointer to function and pointer to structure ?
write a program to search for an element in a given array. If the array was found then display its position otherwise display appropriate message in c language
4.A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
Write a program or provide a pseudo code to flip the 2nd bit of the 32 bit number ! (Phone Screen)
write a Program to dispaly upto 100 prime numbers(without using Arrays,Pointer)
26 Answers ADITI, iFlex, Infosys, Oracle, TCS, Unicops, Wipro,
whether itis a structured language?
Juxtapose the use of override with new. What is shadowing?
In which mode we open the file for read,write and append also in c ? a)W b)w+ c)r+ d)a
why 'c' is called middle level language.
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
Why is this loop always executing once?
Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV