wats SIZE_T meant for?
Answer / barun
int
But this size is compiler dependent depending on the
processor you are using. I mean on 32 bit or 64 machines.
| Is This Answer Correct ? | 2 Yes | 1 No |
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
Explain what does it mean when a pointer is used in an if statement?
Which built-in library function can be used to match a patter from the string?
How can I find the modification date of a file?
how to make c program without a libary? e.g.#include<stdio.h> libary is not in c progaram.
How to write c functions that modify head pointer of a linked list?
What is volatile c?
What do you understand by normalization of pointers?
#define MAX 3 main() { printf("MAX = %d \n",MAX ); #undef MAX #ifdef MAX printf("Vector Instituteā); #endif
write a reverse string to print a stars.(with out using logic) ***** **** *** ** *
Describe advantages and disadvantages of the various stock sorting algorithms
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].