What are high level languages like C and FORTRAN also known as?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> int fun(); int i; int main() { while(i) { fun(); main(); } printf("hello \n"); return 0; } int fun() { printf("hi"); } answer is hello.how??wat is tat while(i) mean?
what is ram?
which types of data structure will i use to convert infix to post fix???
Can i use “int” data type to store the value 32768? Why?
What do you mean by c?
how we can make 3d venturing graphics on outer interface
Explain what is a pragma?
What will be the output of the following program #include<stdio.h> void main() { int i=20; i-=i+++++i++; printf("%d",i); }
int arr[] = {1,2,3,4} int *ptr=arr; *(arr+3) = *++ptr + *ptr++; Final contents of arr[]
Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?
Which command is more efficient? *(ptr+1) or ptr[1]
what is op? for(c=0;c=1000;c++) printf("%c",c);