Why is c called c?
No Answer is Posted For this Question
Be the First to Post Answer
What does #pragma once mean?
Can u return two values using return keyword? If yes, how? If no, why?
What type of function is main ()?
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
5 Answers Vector, Vector Solutions,
What is the difference between void main and main in c?
List some of the dynamic data structures in C?
1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x=4; While(x==1) { X=x-1; Printf(ā%dā,x); --x; } }
How do I round numbers?
How can you invoke another program from within a C program?
How many types of operators are there in c?
What are the 5 data types?
write a program to delete an item from a particular location of an linear array?