How to find a missed value, if you want to store 100 values in a 99 sized array?
No Answer is Posted For this Question
Be the First to Post Answer
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
we all know about the function overloading concept used in C++ and we all learnt abt that.... but that concept is already came in C in a very smaller propotion ... my question is IN WHICH CONCEPT THERE IS A USE OF FUNCTION OVERLOADING IS USED in C language?????????????
What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these
What are valid operations on pointers?
write a program whose output will be- 1 12 123 1234
Write a c program to demonstrate Type casting in c?
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
write a program for odd numbers?
Is there any restriction in how many arguments printf or scanf function can take? in which file in my c++ compiler i can see the code for implementation of these two functions??
52.write a “Hello World” program in “c” without using a semicolon? 53.Give a method to count the number of ones in a 32 bit number? 54.write a program that print itself even if the source file is deleted? 55.Given an unsigned integer, find if the number is power of 2?
25 Answers Datamatics, Solartis, TCS, ThinkBox, Trine,
When should volatile modifier be used?
What is the difference between procedural and functional programming?