What are the 4 types of programming language?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of ?: Operator?
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }
Why flag is used in c?
what does ‘#include’ mean?
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
Why doesnt the call scanf work?
can we initialize all the members of union?
How can you convert integers to binary or hexadecimal?
write a c program for greatest of three numbers without using if statment
Suppose I want to write a function that takes a generic pointer as an argument and I want to simulate passing it by reference. Can I give the formal parameter type void **, and do something like this? void f(void **); double *dp; f((void **)&dp);