Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
No Answer is Posted For this Question
Be the First to Post Answer
9.how do you write a function that takes a variable number of arguments? What is the prototype of printf () function? 10.How do you access command-line arguments? 11.what does ‘#include<stdio.h>’ mean? 12.what is the difference between #include<> and #include”…”? 13.what are # pragma staments? 14.what is the most appropriate way to write a multi-statement macro?
How can I increase the allowable number of simultaneously open files?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
Write a function in c to find the area of a triangle whose length of three sides is given.
What are extern variables in c?
Can one function call another?
Explain how can I right-justify a string?
What is the description for syntax errors?
What are dangling pointers in c?
#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?
Here is a neat trick for checking whether two strings are equal
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.