What is modeling?
No Answer is Posted For this Question
Be the First to Post Answer
hello friends what do u mean by BUS ERROR i got this error while i am doing my program in DATA STRUCTURES
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
How to write c functions that modify head pointer of a linked list?
what is a constant pointer in C
write a program to find out prime number using sieve case?
What is variable in c with example?
Write a code to remove duplicates in a string.
Describe the steps to insert data into a singly linked list.
Do you know null pointer?
sir i wanted to know how we wap in c to add numbers without using arithmetic operator in which digits are entered by user?
Can you pass an entire structure to functions?
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }