from which concept of 'c', the static member function
of 'c++' has came?
program for comparing 2 strings without strcmp()
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?
write a method for an array in which it can display the largest n next largest value.
Given an unsigned integer, find if the number is power of 2?
question-how to run a c programme.
The code is::::: if(condition) Printf("Hello"); Else Printf("World"); What will be the condition in if in such a way that both Hello and world are printed in a single attempt?????? Single Attempt in the sense... It must first print "Hello" and it Must go to else part and print "World"..... No loops, Recursion are allowed........................
14 Answers HOV Services, IBM, Potty,
Explain null pointer.
What are the different types of C instructions?
Differentiate between full, complete & perfect binary trees.
Which of the following data structures is on average the fastest for retrieving data: 1) Binary Tree 2) Hash Table 3) Stack
What is an lvalue and an rvalue?
Write a program in C to convert date displayed in gregorian to julian date