What is difference between class and structure?
No Answer is Posted For this Question
Be the First to Post Answer
How would you rename a function in C?
What are the key features in c programming language?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }
Write a C program to find the smallest of three integers, without using any of the comparision operators.
#include<stdio.h> #include<conio.h> void main() { clrscr(); int a=0,b=0,c=0; printf("enter value of a,b"); scanf(" %d %d",a,b); c=a+b; printf("sum is %d",c); getch(); }
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
What are header files? What are their uses?
What is structure of c program?
Illustrate it summing the series 2+4+6+......to n terms using (i) while loop (ii) do-while loop
how is the examination pattern?
Is int a keyword in c?