What is the role of && operator in a program code?
No Answer is Posted For this Question
Be the First to Post Answer
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.
Write a program in C to reverse a number by recursive function?
How many types of sorting are there in c?
Explain in detail how strset (string handling function works )pls explain it with an example.
What is structure packing in c?
Why pointers are used?
What is 'makefile' in C langauage? How it be useful? How to write a makefile to a particular program?
How will you find a duplicate number in a array without negating the nos ?
What are the different types of storage classes in C?
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?
Differentiate b/w Modify and Update commands giving example.
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)