Is fortran faster than c?
No Answer is Posted For this Question
Be the First to Post Answer
Where are local variables stored in c?
Explain how do you determine a file’s attributes?
Can a pointer be null?
What is function and its example?
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
What is the output of the program given below #include<stdio.h> main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }
21 Answers ADITI, Student, TCS,
/*what is the output for the code*/ void main() { int r; r=printf("naveen"); r=printf(); printf("%d",r); getch(); }
What is infinite loop?
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
Write a code to generate a series where the next element is the sum of last k terms.
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions