What is the difference between text and binary modes?
No Answer is Posted For this Question
Be the First to Post Answer
Which command is more efficient? *(ptr+1) or ptr[1]
How can I manipulate strings of multibyte characters?
What is the difference between NULL and NUL?
What does & mean in scanf?
number of times a digit is present in a number
write the program for prime numbers?
73 Answers Accenture, Aptech, Infosys, TCS,
#include<stdio.h> main() { int i=5; printf("%d",i*i-- - --i*i*i++ + ++i); } tell the answer with correct reason .specially reason is important nt answer ans by turbo c is -39
write a programme that inputs a number by user and gives its multiplication table.
how to write palindrome program?
Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers
Explain the difference between malloc() and calloc() in c?
What is dynamic memory allocation?