Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
No Answer is Posted For this Question
Be the First to Post Answer
write a program that prints a pascal triangle based on the user input(like how many stages) in an efficient time and optimized code?
Switch (i) i=1; case 1 i++; case 2 ++i; break; case 3 --i; Output of i after executing the program
#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?
Differentiate between the expression “++a” and “a++”?
What are conditional operators in C?
c program for searching a student details among 10 student details
What header files do I need in order to define the standard library functions I use?
whitch value return void main?
What is pointer in c?
Why does everyone say not to use gets?
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.
Can you please explain the difference between malloc() and calloc() function?