What is realloc in c?
No Answer is Posted For this Question
Be the First to Post Answer
what are the facialities provided by you after the selection of the student.
When is a void pointer used?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
what is difference between c and c++
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20
What is scanf () in c?
How can I convert integers to binary or hexadecimal?
Output for following program using for loop only * * * * * * * * * * * * * * *
How will you find a duplicate number in a array without negating the nos ?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
the maximum width of a c variable name can be a) 6 characters b) 8 characters c) 10 characters d) 20 characters
What is the difference between struct and typedef struct in c?