Why c is procedure oriented?
What is difference between scanf and gets?
Array is an lvalue or not?
When would you use a pointer to a function?
Explain what are reserved words?
Write a progarm to find the length of string using switch case?
i=20,k=0; for(j=1;j<i;j=1+4*(i/j)) { k+=j<10?4:3; } printf("%d", k);
Are the expressions * ptr ++ and ++ * ptr same?
the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }
Why doesnt the call scanf work?
What are c header files?
how to capitalise first letter of each word in a given string?
which of the following statements is incorrect a.typedef struct new{ int n1; char n2; } DATA; b.typedef struct { int n3; char *n4; }ICE; c.typedef union { int n5; float n6; } UDT; d.#typedef union { int n7; float n8; } TUDAT;