Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
No Answer is Posted For this Question
Be the First to Post Answer
write a program for fibonaci series by using while loop in c?
what is the maximum limit of row and column of a matrix in c programming. in linux .
How do c compilers work?
What are the concepts introduced in OOPs?
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
Write a program using two-dimensional array that lists the odd numbers and even numbers separately in a 12 input values.
1 1 2 1 2 3 1 2 3 4 1 2 3 1 2 1 generate this output using for loop
write a pgm to print 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1
Explain the difference between malloc() and calloc() function?
how to print this pyramid * * * * * * * * * * * * *
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?
What is the hardest programming language?