What is the difference between strcpy() and memcpy() function in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
Are global variables static in c?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
find largest element in array w/o using sorting techniques.
#include<stdio.h> main(0 { printf("\n %d %d %d",sizeof(3),sizeof("3"),sizeof(3)); }
write a program to add two numbers of any size.....(remember any size)
What are compound statements?
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
What is malloc and calloc?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
write a program to display numbers from 1 to 10 and 10 to 1?
write an algorithm which can find the largest number among the given list using binary search ............... this was asked in the interview
2 Answers Satyam, UNIS, Wipro,
Finding first/last occurrence of a character in a string without using strchr( ) /strrchr( ) function.