What happens if you free a pointer twice?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to generate the first n terms in the series --- 9,11,20,31,...,82
What is modeling?
#include<stdio.h> void main() { int =1; printf("%d%d%d",a++,++a,++a); }
How to Clear last bit if it 1 using Macro TURN_OFF_BIT_LAST
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,
HOW TO ANSWER IF ASKED " WHAT KIND OF A PERSON ARE YOU?" I NEED AN ANSWER THAT IMPRESS THE INTERVIEWER
how to find a 5th bit is set in c program
There are 3 baskets of fruits with worng lables,one basket has apple,another basket has orange,another has combination of apple and orange,what is the least way of interchange the lables.
15 Answers Cisco, Google, MBT,
What are keywords c?
Write a c program to find, no of occurance of a given word in a file. The word is case sensitive.
a<<1 is equivalent to a) multiplying by 2 b) dividing by 2 c) adding 2 d)none of the above
Write a function that accepts a sentence as a parameter, and returns the same with each of its words reversed. The returned sentence should have 1 blank space between each pair of words. Demonstrate the usage of this function from a main program. Example: Parameter: “jack and jill went up a hill” Return Value: “kcaj dna llij tnew pu a llih”