What is clrscr in c?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100
what r callback function?
difference between native and cross compilers
Explain pointer. What are function pointers in C?
How do you do dynamic memory allocation in C applications?
How to draw the flowchart for structure programs?
What is the relationship between pointers and data structure?
What is getch c?
what is the maximum limit of row and column of a matrix in c programming. in linux .
What is merge sort in c?
What language is windows 1.0 written?
Describe static function with its usage?